diff --git a/src/common/components/Navigation/components/LinkItem/LinkItem.jsx b/src/common/components/Navigation/components/LinkItem/LinkItem.jsx new file mode 100644 index 0000000..f321352 --- /dev/null +++ b/src/common/components/Navigation/components/LinkItem/LinkItem.jsx @@ -0,0 +1,12 @@ +import {Link, Typography} from "@mui/material"; + +export const LinkItem = ({route, onClick}) => { + return ( + + + {route.name} + + + ) +} \ No newline at end of file