diff --git a/src/pages/Create/components/PublishForm/index.scss b/src/pages/Create/components/PublishForm/index.scss index da8345e..9bd5a8b 100644 --- a/src/pages/Create/components/PublishForm/index.scss +++ b/src/pages/Create/components/PublishForm/index.scss @@ -1,3 +1,3 @@ -.ant-drawer-content-wrapper { - width: 50% !important; -} \ No newline at end of file +// .ant-drawer-content-wrapper { +// width: 50% !important; +// } \ No newline at end of file diff --git a/src/pages/Create/components/PublishForm/index.tsx b/src/pages/Create/components/PublishForm/index.tsx index 01d849f..e4b3d4f 100644 --- a/src/pages/Create/components/PublishForm/index.tsx +++ b/src/pages/Create/components/PublishForm/index.tsx @@ -1,9 +1,82 @@ +import { Form, Input, Button, Select, DatePicker, SelectProps } from "antd"; import "./index.scss" +import TextArea from "antd/es/input/TextArea"; const PublishForm = () => { + const options: SelectProps['options'] = []; + + for (let i = 10; i < 36; i++) { + options.push({ + label: i.toString(36) + i, + value: i.toString(36) + i, + }); + } + + const onSubmit = () => { + + } + return ( <> -

Hello World!

+
+ + + + + + + + + + + + + +