blob: 51141c3e1216a799638d48dc586a5668c5ef112c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import TerminalWindow from "../components/not-found/TerminalWindow";
import './NotFound.css';
const NotFound = () => (
<div className="not-found-backdrop">
<TerminalWindow/>
</div>
);
export default NotFound;
|