Draw the rest of the UI library

This commit is contained in:
2021-09-25 02:12:50 -04:00
parent a8e3774bc8
commit c94ae8960f
58 changed files with 1423 additions and 222 deletions

View File

@@ -0,0 +1,22 @@
import React from "react";
import { ComponentStory, ComponentMeta } from "@storybook/react";
import { TextAreaProps } from "./TextArea";
import TextArea from "./TextArea";
export default {
title: "TextAreas/TextArea",
component: TextArea,
argTypes: {},
} as ComponentMeta<typeof TextArea>;
const Template: ComponentStory<typeof TextArea> = (args: TextAreaProps) => (
<TextArea {...args} />
);
export const Default = Template.bind({});
Default.args = {
id: "testId",
placeholder: "Tell me your secrets",
};