diff --git a/src/features/editors/Editor.jsx b/src/features/editors/Editor.jsx new file mode 100644 index 000000000..bcf39724d --- /dev/null +++ b/src/features/editors/Editor.jsx @@ -0,0 +1,43 @@ +import { Flex, Text } from '@chakra-ui/layout'; +import { Heading } from '@chakra-ui/layout'; +import { SimpleGrid } from '@chakra-ui/layout'; +import { Box } from '@chakra-ui/layout'; +import NumberedText from '../../common/components/text/NumberedText'; +import EventForm from '../form/EventForm'; +import PreviewContainer from '../viewers/PreviewContainer'; +import styles from './Editor.module.css'; +import EventList from './list/EventList'; + +export default function Editor() { + return ( + + + List Events + +
+ +
+
+ + + Event Details + +
+ +
+
+ + + List Events + +
+ +
+
+
+ ); +} diff --git a/src/features/editors/Editor.module.css b/src/features/editors/Editor.module.css new file mode 100644 index 000000000..bb8e8a16b --- /dev/null +++ b/src/features/editors/Editor.module.css @@ -0,0 +1,19 @@ +.mainContainer { + width: 95%; + margin: auto; + height: 95vh; +} + +.editor { + height: 100%; + margin-top: 1em; + background-color: white; + padding: 2em; + + display: flex; + flex-direction: column; +} + +.content { + padding-top: 2em; +}