Import e2e (#311)

This commit is contained in:
Will Chen
2025-06-02 21:39:51 -07:00
committed by GitHub
parent 4997a8f2ff
commit 667fc42af4
31 changed files with 2513 additions and 3 deletions

View File

@@ -0,0 +1,3 @@
const App = () => <div>Minimal imported app</div>;
export default App;

View File

@@ -0,0 +1,4 @@
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(<App />);

View File

@@ -0,0 +1 @@
/// <reference types="vite/client" />