mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-09 03:19:35 +00:00
Rewrite using typescript, integrate the latest changes from @mwarning/openwrt-firmware-selector
This commit is contained in:
parent
d5c4ea592a
commit
ce4c36622b
47 changed files with 5269 additions and 5282 deletions
|
|
@ -1,15 +1,15 @@
|
|||
import React from 'react';
|
||||
import React, { FunctionComponent } from 'react';
|
||||
import { Container, Paper, Typography } from '@material-ui/core';
|
||||
import { makeStyles } from '@material-ui/core/styles';
|
||||
|
||||
const page404Styles = makeStyles(theme => ({
|
||||
const page404Styles = makeStyles((theme) => ({
|
||||
root: {
|
||||
padding: theme.spacing(3, 2),
|
||||
},
|
||||
}));
|
||||
|
||||
export default function NotFound() {
|
||||
var classes = page404Styles();
|
||||
const NotFound: FunctionComponent = () => {
|
||||
const classes = page404Styles();
|
||||
return (
|
||||
<Container style={{ marginTop: '50px' }}>
|
||||
<Paper className={classes.root} elevation={3}>
|
||||
|
|
@ -20,4 +20,6 @@ export default function NotFound() {
|
|||
</Paper>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
export default NotFound;
|
||||
Loading…
Add table
Add a link
Reference in a new issue