feat: Initialize Dokploy Blueprints React application with core UI components

This commit is contained in:
Mauricio Siu
2025-03-10 00:17:45 -06:00
parent da6301adf4
commit f6284bbb41
24 changed files with 8 additions and 7 deletions

10
app/src/App.tsx Normal file
View File

@@ -0,0 +1,10 @@
import TemplateGrid from './components/TemplateGrid';
import './App.css';
function App() {
return (
<TemplateGrid />
);
}
export default App;