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
Is there a way to import css then use it?
E.g. one example I'm working with does this:
import styles from './InfiniteLoader.example.css'
Then refers to the CSS later on in JSX:
className={styles.List}
Is this possible (or even desirable) in haxe-react?
The text was updated successfully, but these errors were encountered:
This isn't a React feature, but rather a Webpack one. This is the job for a CSS library, and it would certainly be cool.
Someone did an implementation close to what you're describing, including type-safe classnames:
Sorry, something went wrong.
Now possible with Webpack Haxe Loader:
No branches or pull requests
Is there a way to import css then use it?
E.g. one example I'm working with does this:
import styles from './InfiniteLoader.example.css'
Then refers to the CSS later on in JSX:
className={styles.List}
Is this possible (or even desirable) in haxe-react?
The text was updated successfully, but these errors were encountered: