feat: Add initial frontend dependencies, base CSS, and Gitea Docker build workflow.
Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 2m23s

This commit is contained in:
almazlar
2026-02-20 23:12:41 +03:00
parent c8572c5456
commit cf58ccb2c8
34 changed files with 4424 additions and 0 deletions

13
frontend/src/App.jsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import TodoList from './components/TodoList';
import './App.css';
function App() {
return (
<main>
<TodoList />
</main>
);
}
export default App;