JSFiddle - React, Tailwind, and code Playground
by jestho
JavaScript
import React from 'react';
import cx from 'classnames';
import CSS from './Foo.css';
class Foo extends React.Component {
render() {
return <div className={cx([this.props.className, CSS.foo])} />
}
}