10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
import CommandLineManager from "../commandline/CommandLineManager";
|
|
|
|
function NotFound() {
|
|
return(
|
|
<CommandLineManager page={"404"}/>
|
|
);
|
|
}
|
|
|
|
export default NotFound;
|