First commit

This commit is contained in:
2021-04-15 15:08:54 -07:00
commit 2ccebf13b8
39 changed files with 26887 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import * as React from "react";
import ZeroState from "./ZeroState";
interface IProps {}
interface IState {}
class Dashboard extends React.Component<IProps, IState> {
public render() {
return (
<section className="section">
<h1 className="title">Dashboard</h1>
<h2 className="subtitle">
A simple container to divide your page into <strong>sections</strong>,
like the one you're currently reading.
</h2>
<ZeroState
header={"Set the source directory"}
message={
"No comics were found! Please point ThreeTwo! to a directory..."
}
/>
</section>
);
}
}
export default Dashboard;