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/admin/admin.tsx

12 lines
199 B
TypeScript

import React from 'react';
interface IProps {}
interface IState {}
export class Admin extends React.Component<IProps, IState> {
render() {
return <div className="content">TODO:</div>;
}
}