Initial commit

This commit is contained in:
Tobias Fried
2020-07-14 17:41:45 -04:00
parent 856e1ac749
commit 3a9cf5dc99
18 changed files with 329 additions and 57 deletions

View File

@@ -0,0 +1,24 @@
import React from "react";
import { IconSearch, IconGrid } from "../";
const App = () => {
return (
<div>
<header>
Phosphor Icons{" "}
<a
// className="App-link"
href="https://play.google.com/store/apps/details?id=com.tobiasfried.phosphor"
target="_blank"
rel="noopener noreferrer"
>
on the play store
</a>
</header>
<IconSearch />
<IconGrid />
</div>
);
};
export default App;