🚀 add gameboy to home screen

This commit is contained in:
Chase Manning 2023-09-05 09:20:53 +03:00
commit 93a8cffe1a

View file

@ -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;