32d5cdc293
fixes #1354
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import stickybits from 'stickybits';
|
|
|
|
import App from './app';
|
|
|
|
ReactDOM.render(<App />, document.getElementById('header'));
|
|
|
|
stickybits('#header');
|