Skip to content

Commit 8d6ab3c

Browse files
author
Emile Frey
committed
updated README
1 parent f451015 commit 8d6ab3c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@ The server should be available at `http://127.0.0.1/`. This mode will not hot re
7878
- [ ] Auto redirect to login with Failed Request
7979
- [ ] Axios Interface for demo API
8080
- [ ] Update and Pin versions (remove anything unused)
81+
- [ ] Logging (user login/logout)
82+
- [ ] Company Name/App Name
83+
- [ ] Docusaurus help

frontend/src/components/Home.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function Home(props: AuthProps) {
133133
};
134134

135135
return (
136-
<React.Fragment>
136+
<>
137137
<CssBaseline />
138138
<Container fixed className={classes.container}>
139139
<Grid container spacing={3}>
@@ -197,7 +197,7 @@ function Home(props: AuthProps) {
197197
</Grid>
198198
</Grid>
199199
</Container>
200-
</React.Fragment >
200+
</ >
201201
)
202202
}
203203

frontend/src/components/Layout/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Footer() {
77
return (
88
<Typography variant="body2" color="textSecondary" align="center">
99
{'Copyright © '}
10-
<Link color="inherit" href="https://github.com/emilefrey/django-react-postgres-boilerplate">
10+
<Link color="inherit" href="">
1111
{APP_NAME}
1212
</Link>{' '}
1313
{new Date().getFullYear()}

0 commit comments

Comments
 (0)