From 5148ee2063846d37f9152a9dfa64fcd40cc0454b Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Fri, 1 Mar 2024 16:31:27 -0700 Subject: get something on the screen --- src/App.tsx | 56 ++++++++++++++++++++++++++------------------------------ 1 file changed, 26 insertions(+), 30 deletions(-) (limited to 'src/App.tsx') diff --git a/src/App.tsx b/src/App.tsx index afe48ac..9c5f790 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,35 +1,31 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' -import './App.css' +import { GameCanvas } from "./components/GameCanvas"; -function App() { - const [count, setCount] = useState(0) +const WIDTH = 800; +const HEIGHT = 800; +export const App = () => { return ( - <> -
- - Vite logo - - - React logo - +
+
+
+

the abstraction engine

+
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

+
+
-

- Click on the Vite and React logos to learn more -

- - ) -} - -export default App +
+ + built by{" "} + + simponic + + +
+
+ ); +}; -- cgit v1.2.3-70-g09d2