Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated js to jsx #1387

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file removed src/components/Todo.js
Empty file.
7 changes: 7 additions & 0 deletions src/components/Todo.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const Todo = () => {
return <div>Todo</div>;
};

export default Todo;
Empty file removed src/components/TodoForm.js
Empty file.
7 changes: 7 additions & 0 deletions src/components/TodoForm.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const TodoForm = () => {
return <div>TodoForm</div>;
};

export default TodoForm;
8 changes: 8 additions & 0 deletions src/components/TodoList.js → src/components/TodoList.jsx
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
// your components will all go in this `component` directory.
// feel free to change this component.js into TodoList.js

import React from "react";

const TodoList = () => {
return <div>TodoList</div>;
};

export default TodoList;