Initialize frontend app (#112)

This commit is contained in:
Salih Altun
2024-03-20 21:09:47 +03:00
committed by GitHub
parent 042fba91ae
commit a27e1dcd81
16 changed files with 3688 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
function App() {
return <></>;
}
export default App;

View File

View File

@@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);

1
skyvern-frontend/src/vite-env.d.ts vendored Normal file
View File

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