diff --git a/src/components/Cards/TaskCard.js b/src/components/Cards/TaskCard.js new file mode 100644 index 0000000..7d6b2d5 --- /dev/null +++ b/src/components/Cards/TaskCard.js @@ -0,0 +1,24 @@ +"use client"; +//MUI +import Card from '@mui/material/Card'; +import TextField from '@mui/material/TextField'; +import Radio from '@mui/material/Radio'; + +//React +import React from 'react'; + +export default function TaskCard() { + + return ( + <> +
+ +
+ + +
+
+
+ + ); +} \ No newline at end of file diff --git a/src/components/Cards/TaskHeaderCard.js b/src/components/Cards/TaskHeaderCard.js new file mode 100644 index 0000000..61daa02 --- /dev/null +++ b/src/components/Cards/TaskHeaderCard.js @@ -0,0 +1,47 @@ +"use client"; +// MUI +import Box from '@mui/material/Box'; +import AddTaskIcon from '@mui/icons-material/AddTask'; +import Card from '@mui/material/Card'; +import CardActions from '@mui/material/CardActions'; +import Typography from '@mui/material/Typography'; +import Button from '@mui/material/Button'; +import MoreVertOutlined from '@mui/icons-material/MoreVertOutlined'; +import IconButton from '@mui/material/IconButton'; +import Tooltip from '@mui/material/Tooltip'; + +// React +import React from 'react'; + +export default function TaskHeaderCard() { + return ( + <> +
+ +
+ + My Tasks + + + + + + + +
+ + + + + +
+
+ + ); +} \ No newline at end of file