react-biz
Version:
React components for Business
11 lines (8 loc) • 353 B
JavaScript
import { themr } from 'react-css-themr';
import { SNACKBAR } from '../identifiers';
import { snackbarFactory } from './Snackbar';
import { Button } from '../button';
import theme from './theme.css';
const ThemedSnackbar = themr(SNACKBAR, theme)(snackbarFactory(Button));
export default ThemedSnackbar;
export { ThemedSnackbar as Snackbar };