This loader parses markdown files and converts them to a React Stateless Component. It will also parse FrontMatter to import dependencies and render components along with it’s source code. We developed this loader in order to make the process of creating styleguides for React components easier
Right now we only support this kind of import:
import Component from './component.js'
It would be cool to support also the not default exports
import { Component1, Component2 } from './component.js'