Created the Coins page

This commit is contained in:
Mathias Wagner 2022-09-12 00:59:00 +02:00
parent a2cf16c9d9
commit 0868149e86
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
const Coins = () => {
return (<h2>Coins</h2>)
}
export default Coins;

1
src/pages/Coins/index.js Normal file
View File

@ -0,0 +1 @@
export {default} from './Coins.jsx';