react-toolbox/components/link/index.js

10 lines
256 B
JavaScript
Raw Normal View History

2016-05-29 21:03:41 +03:00
import { themr } from 'react-css-themr';
import { LINK } from '../identifiers.js';
import { Link } from './Link.js';
import theme from './theme.scss';
const ThemedLink = themr(LINK, theme)(Link);
export default ThemedLink;
export { ThemedLink as Link };