UNPKG

240 BJSXView Raw
1import React from 'react';
2
3import withStyles from './withStyles';
4
5export default withStyles(() => ({
6 ComponentB_primary: { color: 'green' },
7 ComponentB_secondary: { color: 'yellow' },
8}))(function ComponentB() {
9 return <div />;
10});
11
\No newline at end of file