1
0
Fork 0

React init (via bun)

This commit is contained in:
Techognito 2025-07-26 21:58:52 +02:00
parent 641544f964
commit f3338f2a3d
14 changed files with 472 additions and 1 deletions

24
src/App.tsx Normal file
View file

@ -0,0 +1,24 @@
import { APITester } from "./APITester";
import "./index.css";
import logo from "./logo.svg";
import reactLogo from "./react.svg";
export function App() {
return (
<div className="app">
<div className="logo-container">
<img src={logo} alt="Bun Logo" className="logo bun-logo" />
<img src={reactLogo} alt="React Logo" className="logo react-logo" />
</div>
<h1>Bun + React</h1>
<p>
Edit <code>src/App.tsx</code> and save to test HMR
</p>
<APITester />
</div>
);
}
export default App;