mirror of
https://github.com/franjsco/tick3t
synced 2025-06-05 22:19:18 +02:00
refactor: PageNotFound component
This commit is contained in:
@ -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;
|
Reference in New Issue
Block a user