react-code-dataset
/
next.js
/test
/production
/dynamic-css-client-navigation
/src
/components
/red-button.tsx
| import React from 'react' | |
| import classes from './red.module.css' | |
| export function RedButton() { | |
| return ( | |
| <button id="red-button" className={classes.button}> | |
| Red Button | |
| </button> | |
| ) | |
| } | |