0

Any solution in solving this problem here using isomorphic-style-loader? kriasoft/react-starter-kit

Using the react-starter-kit, and the solutions they proposed here: roylee0704/react-flexbox-grid doesn't seem to fix the issue.

Mike Victoria
  • 245
  • 1
  • 4
  • 23

1 Answers1

1

First you need to import your flexgrid css like so:

import grid from 'react-flexgrid/lib/flexgrid.css';

. . .

Then at the end you need to add imported styles to styles loader like this:

export default withStyles(grid, s)(Component)

But instead of package you link i use this one: https://github.com/nkt/react-flexgrid Works for me.

Marcin
  • 71
  • 1
  • 5