Skip to content

Commit 5884887

Browse files
committed
dashboard
1 parent 3728ecf commit 5884887

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

server/client/src/components/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as actions from '../actions';
55

66
import Header from './Header';
77
import Landing from './Landing';
8-
const Dashboard = () => <h2>Dashboard</h2>;
8+
import Dashboard from './Dashboard';
99
const SurveyNew = () => <h2>SurveyNew</h2>;
1010

1111
class App extends Component {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import React from 'react';
2+
3+
const Dashboard = () => {
4+
return (
5+
<div>
6+
Dashboard
7+
</div>
8+
);
9+
};
10+
11+
export default Dashboard;

0 commit comments

Comments
 (0)