I'm using Webpack bundler and configured appropriate loaders for .fs, .scss, .css files. Now how do I import a stylesheet into a Fable based React Component?
open Fable.React
open Fable.React.Props
// open 'MyComponent.scss' ????
type MyComponent(props) =
inherit Component<unit, unit>(props)
I know there's no straight forward way to achieve this. But there's no clear documentation about the same. Any ideas?