28 lines
655 B
TypeScript
28 lines
655 B
TypeScript
import { APITester } from "./APITester";
|
|
import "./index.css";
|
|
import { List } from "./wisher/list";
|
|
|
|
import logo from "./logo.svg";
|
|
import reactLogo from "./react.svg";
|
|
|
|
import Button from '@mui/material/Button';
|
|
|
|
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 />
|
|
<List />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|