Skip to content

Instantly share code, notes, and snippets.

@wallynm
Created August 20, 2018 04:51
Show Gist options
  • Save wallynm/a511e20dbc9fa6ee235064c87dc05d8e to your computer and use it in GitHub Desktop.
Save wallynm/a511e20dbc9fa6ee235064c87dc05d8e to your computer and use it in GitHub Desktop.
Medium 01 - CSS Modules
import React, { Component } from 'react'
import styles from 'form-module.css'
class Form extends Component {
render() {
return <form className={styles.form} />
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment