mirror of
https://github.com/franjsco/tick3t
synced 2025-01-14 18:37:04 +01:00
refactor: PageNotFound component
This commit is contained in:
parent
bf41042ac0
commit
d650249972
@ -1,14 +1,8 @@
|
||||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import Card from '../components/Card';
|
||||
|
||||
class PageNotFound extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
render() {
|
||||
const PageNotFound = (props) => {
|
||||
return (
|
||||
<div>
|
||||
<Card
|
||||
@ -19,7 +13,6 @@ class PageNotFound extends Component {
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default PageNotFound;
|
Loading…
Reference in New Issue
Block a user