Skip to content

Commit 49ccef8

Browse files
committed
new business-admin directory, updated webpack with 2 entries and 2 outputs
1 parent 11770c1 commit 49ccef8

File tree

100 files changed

+25714
-441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+25714
-441
lines changed

business-admin/components/App/App.jsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from 'react'
2+
3+
4+
var App = React.createClass({
5+
6+
render: function() {
7+
8+
return (
9+
<div>hey there business admin</div>
10+
)
11+
}
12+
})
13+
14+
module.exports = App;
File renamed without changes.

business-admin/routes.jsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { Route, IndexRoute } from 'react-router'
2+
import React from 'react'
3+
import App from './components/App/App'
4+
// import BusinessAdminView from './components/BusinessAdminView/BusinessAdminView'
5+
6+
7+
var Routes = <Route path="/admin" component={App}>
8+
{/* <IndexRoute component={BusinessAdminView} /> */}
9+
{/* <Route path="select-shop" component={SelectShopView} /> */}
10+
</Route>
11+
12+
module.exports = Routes;

0 commit comments

Comments
 (0)