We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry for disturbing again, but I really need this.
In your series, you use CSS Modules, more like as a component import styles from "./style.css" then reference it with className={styles.title}
import styles from "./style.css"
className={styles.title}
I want to use it straight away without importing it as a component. Like import "./style.css" className="title"
import "./style.css"
className="title"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sorry for disturbing again, but I really need this.
In your series, you use CSS Modules, more like as a component
import styles from "./style.css"
then reference it withclassName={styles.title}
I want to use it straight away without importing it as a component.
Like
import "./style.css"
className="title"
The text was updated successfully, but these errors were encountered: