react-toolbox/components/navigation/index.js

11 lines
405 B
JavaScript
Raw Normal View History

2016-05-29 22:56:10 +03:00
import { themr } from 'react-css-themr';
import { NAVIGATION } from '../identifiers.js';
import { navigationFactory } from './Navigation.js';
import { Button } from '../button';
import { Link } from '../link';
import theme from './theme.scss';
const ThemedNavigation = themr(NAVIGATION, theme)(navigationFactory(Button, Link));
export default ThemedNavigation;
export { ThemedNavigation as Navigation };