Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
Import Info Component & Return to App
  • Loading branch information
felix-mohrmann authored Feb 5, 2024
1 parent 0fbe734 commit 68f1858
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import './App.css';
import Header from './components/Header';
import BoardsOverview from './components/BoardsOverview';
import NewTodo from './components/NewTodo';
import Info from './components/Info';
import { useEffect, useState } from 'react';
import {
deleteTodo,
Expand Down Expand Up @@ -44,6 +45,7 @@ export default function App() {
<div className="page-layout">
<Header />
<NewTodo onAdd={createNewTodo} />
<Info />
<BoardsOverview
todos={todos}
onAdvance={advanceTodo}
Expand Down

0 comments on commit 68f1858

Please sign in to comment.