diff --git a/src/components/checkbox.jsx b/src/components/checkbox.jsx new file mode 100644 index 0000000..9953360 --- /dev/null +++ b/src/components/checkbox.jsx @@ -0,0 +1,18 @@ +function CheckBox(props) { + return ( +
+ + +
+ ); +} + +export { CheckBox }; diff --git a/src/pages/create.jsx b/src/pages/create.jsx index 41e2c24..8042d0f 100644 --- a/src/pages/create.jsx +++ b/src/pages/create.jsx @@ -1,10 +1,11 @@ import { ButtonWithAction, IconWithButton } from "../components/button"; import { ChevronDoubleRightIcon } from "@heroicons/react/24/outline"; +import { CheckBox } from "../components/checkbox"; function CreateNote() { return (
-

+

Написать записку

-
- - - } - > - Отправить - - -
+
+ +
+ + + } + > + Отправить + + +
);