Component library setup (#115)

This commit is contained in:
Salih Altun
2024-03-21 00:07:02 +03:00
committed by GitHub
parent a27e1dcd81
commit d2ca6ca792
14 changed files with 1543 additions and 342 deletions

View File

@@ -1,5 +1,14 @@
import { Button } from "./components/ui/Button";
import { ThemeProvider } from "@/components/ThemeProvider";
function App() {
return <></>;
return (
<ThemeProvider defaultTheme="dark" storageKey="skyvern-theme">
<div className="h-screen w-screen flex items-center justify-center">
<Button>Hello Skyvern!</Button>
</div>
</ThemeProvider>
);
}
export default App;