chore: remove label story

This commit is contained in:
p-sw 2024-06-03 21:20:08 +09:00
parent 6f0929a951
commit 9b8a0f5145

View File

@ -1,24 +0,0 @@
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 direction="horizontal">
<p>Email</p>
<Input type="text" />
</Label>
);
};