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
Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 2m23s
This commit is contained in:
13
frontend/src/App.jsx
Normal file
13
frontend/src/App.jsx
Normal 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;
|
||||
Reference in New Issue
Block a user