mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
chore(ui): improve search UI
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
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 />
|
||||
<TemplateGrid view={view} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user