使用 CSS Modules
.error {
background-color: red;
}import React from 'react'
import styles from './button.module.css'
const Button = () => <button className={styles.error}>Error Button</button>Last updated
Was this helpful?
.error {
background-color: red;
}import React from 'react'
import styles from './button.module.css'
const Button = () => <button className={styles.error}>Error Button</button>Last updated
Was this helpful?
Was this helpful?