mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-11-03 01:18:58 +00:00
🚀 add gameboy to home screen
This commit is contained in:
parent
b7f31484c8
commit
93a8cffe1a
1 changed files with 6 additions and 1 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import styled from "styled-components";
|
||||
import Gameboy from "./components/Gameboy";
|
||||
|
||||
const StyledApp = styled.div`
|
||||
background: var(--bg);
|
||||
|
|
@ -10,7 +11,11 @@ const StyledApp = styled.div`
|
|||
`;
|
||||
|
||||
const App = () => {
|
||||
return <StyledApp>meow</StyledApp>;
|
||||
return (
|
||||
<StyledApp>
|
||||
<Gameboy />
|
||||
</StyledApp>
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue