mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import TemplateGrid from "./components/TemplateGrid";
|
|
import Navigation from "./components/Navigation";
|
|
import Search from "./components/Search";
|
|
import "./App.css";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="min-h-screen">
|
|
<Navigation />
|
|
<Search />
|
|
<TemplateGrid />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|