react-toolbox/components/app_bar/index.js

12 lines
372 B
JavaScript
Raw Normal View History

2016-05-28 18:00:42 +03:00
import { themr } from 'react-css-themr';
import { APP_BAR } from '../identifiers.js';
2016-09-03 13:23:22 +03:00
import { appBarFactory } from './AppBar.js';
import FontIcon from '../font_icon/FontIcon.js';
2016-05-28 18:00:42 +03:00
import theme from './theme.scss';
2016-09-03 13:23:22 +03:00
const AppBar = appBarFactory(FontIcon);
2016-05-28 18:00:42 +03:00
const ThemedAppBar = themr(APP_BAR, theme)(AppBar);
export default ThemedAppBar;
export { ThemedAppBar as AppBar };