Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created June 26, 2024 13:32
Show Gist options
  • Save PaulieScanlon/eae9a70b7674240788c45e092952df44 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/eae9a70b7674240788c45e092952df44 to your computer and use it in GitHub Desktop.
Example of Linaria generated CSS Modules import
import styles from './SomeComponent.module.css';
const SomeComponent = () => {
return (
<a className={styles.ButtonLink}>
styled link
</a>
);
}
export default SomeComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment