feat: add signup link to login and create signup dummy page

This commit is contained in:
Rıdvan Akca
2023-03-02 16:42:50 +03:00
parent e51930d7e1
commit 4e967c5720
6 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { styled } from '@mui/material/styles';
import { Link as RouterLink } from 'react-router-dom';
export const Link = styled(RouterLink)(({theme}) => ({
textDecoration: 'underline',
marginLeft: theme.spacing(0.5)
}));