Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
react-todo-app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ajmal.S
react-todo-app
Commits
1e3f4dba
Commit
1e3f4dba
authored
Feb 18, 2022
by
Ajmal.S
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor changes
parent
c6e3229b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
App.js
src/App.js
+0
-2
TodoForm.js
src/components/TodoForm.js
+2
-0
TodoItem.js
src/components/TodoItem.js
+1
-1
No files found.
src/App.js
View file @
1e3f4dba
...
...
@@ -75,8 +75,6 @@ function App() {
<
TodoForm
onSubmit
=
{
addTodo
}
/
>
<
h4
style
=
{{
textAlign
:
'center'
,
marginBottom
:
'10px'
}}
>
Completed
Todos
<
/h4
>
<
CompletedTodos
todos
=
{
todos
}
completeTodo
=
{
completeTodo
}
removeTodo
=
{
removeTodo
}
/
>
...
...
src/components/TodoForm.js
View file @
1e3f4dba
...
...
@@ -32,6 +32,8 @@ function TodoForm(props) {
<
button
className
=
"btn"
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
/div
>
<
/form
>
<
h4
style
=
{{
textAlign
:
'center'
,
marginBottom
:
'10px'
}}
>
Completed
Todos
<
/h4
>
<
/
>
);
...
...
src/components/TodoItem.js
View file @
1e3f4dba
...
...
@@ -7,7 +7,7 @@ const TodoItem = () => {
<
div
className
=
"task-body-content"
>
<
div
style
=
{{
display
:
'flex'
}}
>
<
div
style
=
{{
margin
:
'2px 4px 0px 0px'
}}
>
<
input
type
=
'checkbox'
c
hecked
=
{
false
}
><
/input
>
<
input
type
=
'checkbox'
defaultC
hecked
=
{
false
}
><
/input
>
<
/div
>
<
div
>
Item
1
<
/div
>
<
/div
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment