Skip to content
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
2 changes: 1 addition & 1 deletion frontend/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from 'react'
import Task from './components/task'
import Task from './components/Task.jsx'
import Project from './containers/Project'
import Menu from './containers/Menu'

Expand Down
6 changes: 3 additions & 3 deletions frontend/src/containers/Project.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import ProjectMenu from './ProjectMenu';
import TaskContainer from './taskContainer';
import ProjectMenu from './ProjectMenu.jsx';
import TaskContainer from './TaskContainer.jsx';

const Project = (props) => {
const { title } = props;
Expand Down Expand Up @@ -36,4 +36,4 @@ const Project = (props) => {
)
}

export default Project
export default Project
4 changes: 2 additions & 2 deletions frontend/src/containers/TaskContainer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import Task from '../components/task'
import Task from '../components/Task.jsx'

const TaskContainer = ({ section }) => {
return (
Expand All @@ -25,4 +25,4 @@ const TaskContainer = ({ section }) => {
)
}

export default TaskContainer
export default TaskContainer