We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3728ecf commit 5884887Copy full SHA for 5884887
server/client/src/components/App.js
@@ -5,7 +5,7 @@ import * as actions from '../actions';
5
6
import Header from './Header';
7
import Landing from './Landing';
8
-const Dashboard = () => <h2>Dashboard</h2>;
+import Dashboard from './Dashboard';
9
const SurveyNew = () => <h2>SurveyNew</h2>;
10
11
class App extends Component {
server/client/src/components/Dashboard.js
@@ -0,0 +1,11 @@
1
+import React from 'react';
2
+
3
+const Dashboard = () => {
4
+ return (
+ <div>
+ Dashboard
+ </div>
+ );
+};
+export default Dashboard;
0 commit comments