Import e2e (#311)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
const App = () => <div>Minimal imported app</div>;
|
||||
|
||||
export default App;
|
||||
@@ -0,0 +1,4 @@
|
||||
import { createRoot } from "react-dom/client";
|
||||
import App from "./App.tsx";
|
||||
|
||||
createRoot(document.getElementById("root")!).render(<App />);
|
||||
1
e2e-tests/fixtures/import-app/minimal-with-ai-rules/src/vite-env.d.ts
vendored
Normal file
1
e2e-tests/fixtures/import-app/minimal-with-ai-rules/src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/// <reference types="vite/client" />
|
||||
Reference in New Issue
Block a user