Rename tabs to Inbox, Contacts, Insights

This commit is contained in:
Charles Bochet
2022-12-05 21:47:11 +01:00
parent dcfc4c9e45
commit 92267701ff
20 changed files with 52 additions and 52 deletions

View File

@ -1,4 +1,4 @@
function History() {
function Contacts() {
return (
<div>
<h1>This is the history page</h1>
@ -6,4 +6,4 @@ function History() {
);
}
export default History;
export default Contacts;

View File

@ -1,4 +1,4 @@
function Performances() {
function Insights() {
return (
<div>
<h1>This is the performances page</h1>
@ -6,4 +6,4 @@ function Performances() {
);
}
export default Performances;
export default Insights;

View File

@ -1,7 +1,7 @@
import FullWidthContainer from '../../layout/containers/FullWidthContainer';
import TaskList from './TaskList';
function Tasks() {
function Inbox() {
return (
<FullWidthContainer>
<TaskList />
@ -9,4 +9,4 @@ function Tasks() {
);
}
export default Tasks;
export default Inbox;