-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump components, and build, update dev.tsx files
- Loading branch information
1 parent
161fe06
commit eb6ed8c
Showing
25 changed files
with
1,754 additions
and
1,567 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
|
||
import React from 'react' | ||
import ReactDOM from 'react-dom' | ||
import { AppContainer } from 'react-hot-loader' | ||
|
||
import { App } from './AssayTypeSelect' | ||
|
||
const render = () => { | ||
ReactDOM.render( | ||
<AppContainer> | ||
<App/> | ||
</AppContainer>, | ||
document.getElementById('app') | ||
) | ||
ReactDOM.render(<App/>, document.getElementById('app')) | ||
}; | ||
|
||
declare const module: any; | ||
|
||
if (module.hot) { | ||
module.hot.accept(); | ||
} | ||
|
||
render(); |
Oops, something went wrong.