Rename tabs to Inbox, Contacts, Insights
This commit is contained in:
@ -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;
|
||||
@ -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;
|
||||
@ -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;
|
||||
Reference in New Issue
Block a user