Commit 1e3f4dba by Ajmal.S

minor changes

parent c6e3229b
...@@ -75,8 +75,6 @@ function App() { ...@@ -75,8 +75,6 @@ function App() {
<TodoForm onSubmit={addTodo} /> <TodoForm onSubmit={addTodo} />
<h4 style={{ textAlign: 'center', marginBottom: '10px' }}>Completed Todos</h4>
<CompletedTodos todos={todos} <CompletedTodos todos={todos}
completeTodo={completeTodo} completeTodo={completeTodo}
removeTodo={removeTodo} /> removeTodo={removeTodo} />
......
...@@ -32,6 +32,8 @@ function TodoForm(props) { ...@@ -32,6 +32,8 @@ function TodoForm(props) {
<button className="btn" onClick={Submit}>Submit</button> <button className="btn" onClick={Submit}>Submit</button>
</div> </div>
</form> </form>
<h4 style={{ textAlign: 'center', marginBottom: '10px' }}>Completed Todos</h4>
</> </>
); );
......
...@@ -7,7 +7,7 @@ const TodoItem = () => { ...@@ -7,7 +7,7 @@ const TodoItem = () => {
<div className="task-body-content"> <div className="task-body-content">
<div style={{ display: 'flex' }}> <div style={{ display: 'flex' }}>
<div style={{ margin: '2px 4px 0px 0px' }}> <div style={{ margin: '2px 4px 0px 0px' }}>
<input type='checkbox' checked={false}></input> <input type='checkbox' defaultChecked={false}></input>
</div> </div>
<div>Item 1</div> <div>Item 1</div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment