Add basis of commands page

This commit is contained in:
KingRainbow44 2023-04-05 21:20:48 -04:00
parent c86d538597
commit 6e3e770f79
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
3 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,3 @@
.CommandsPage {
margin: 10px;
}

View File

@ -1,5 +1,7 @@
import React from "react";
import "@css/pages/CommandsPage.scss";
class CommandsPage extends React.Component<any, any> {
constructor(props: any) {
super(props);
@ -7,7 +9,7 @@ class CommandsPage extends React.Component<any, any> {
render() {
return (
<div>
<div className={"CommandsPage"}>
<h1>Commands</h1>
</div>
);

View File

@ -0,0 +1,19 @@
import React from "react";
interface IProps {
}
class Command extends React.PureComponent<IProps> {
constructor(props: IProps) {
super(props);
}
render() {
return (
<div>
<a>command</a>
</div>
);
}
}