mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 16:42:48 +00:00
12 lines
199 B
TypeScript
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>;
|
|
}
|
|
}
|