1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 16:42:48 +00:00
Files
go-discord-bot/client/app/pages/NotFound/NotFound.js

13 lines
248 B
JavaScript

import React from 'react';
import './NotFound.scss';
export default class Default extends React.Component {
render() {
return (
<div className="NotFound">
404 Not Found
</div>
);
}
}