ReactJS based comic strip creator
Just install it from npm
npm install react-komik
You can use the component by require it and bundle it with webpack or browserify
import { Strip, Panel, Character, Balloon } from 'react-komik';
let Comic = (props) => (
<Strip title="Your title here" column="2">
<Panel
</Strip>
);
MIT @sonnylazuardi