mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
12 lines
247 B
JavaScript
12 lines
247 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>
|
|
);
|
|
}
|
|
} |