25 lines
406 B
TypeScript
25 lines
406 B
TypeScript
import { Input } from "../components/Input";
|
|
import { Label } from "../components/Label";
|
|
|
|
export default {
|
|
title: "React/Label",
|
|
};
|
|
|
|
export const WithInput = () => {
|
|
return (
|
|
<Label>
|
|
<p>Email</p>
|
|
<Input type="text" />
|
|
</Label>
|
|
);
|
|
};
|
|
|
|
export const HorizontalWithInput = () => {
|
|
return (
|
|
<Label horizontal>
|
|
<p>Email</p>
|
|
<Input type="text" />
|
|
</Label>
|
|
);
|
|
};
|