mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-05 14:05:31 +02:00
20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
import TemplateGrid from "./components/TemplateGrid";
|
|
import Navigation from "./components/Navigation";
|
|
import Search from "./components/Search";
|
|
import { useStore } from "@/store";
|
|
import "./App.css";
|
|
|
|
function App() {
|
|
const view = useStore((state) => state.view);
|
|
|
|
return (
|
|
<div className="min-h-screen">
|
|
<Navigation />
|
|
<Search />
|
|
<TemplateGrid view={view} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|