Scaffold out UI components

This commit is contained in:
rektdeckard
2020-07-21 23:07:36 -04:00
parent 016e6d987b
commit 19d9b8c7d2
24 changed files with 1063 additions and 528 deletions

View File

@@ -1,22 +1,18 @@
import React from "react";
import { Toolbar, IconGrid } from "../";
const App = () => {
import { Header, Toolbar, IconGrid, Footer } from "../";
import "./App.css";
const App: React.FC<any> = () => {
return (
<div>
<header>
<h1>Phosphor Icons</h1>
<a
href="https://play.google.com/store/apps/details?id=com.tobiasfried.phosphor"
target="_blank"
rel="noopener noreferrer"
>
on the play store
</a>
</header>
<Toolbar />
<IconGrid />
</div>
<>
<Header />
<main>
<Toolbar />
<IconGrid />
</main>
<Footer />
</>
);
};