-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
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
Dropdown not rendering #422
Comments
Do I need to install some compiler to compile .less files? Please let me know |
The same thing happens for me, not rendering! |
Internally it is loading the index.css but not rendering! |
I solve this issue, but my project is in NextJs 13 (without app folder). Yes, we need a less compiler. This issue helped me #225 install // next.config.js
const withLess = require("next-with-less");
/** @type {import('next').NextConfig} */
const nextConfig = {
// ...your configs
}
module.exports = withLess(nextConfig); on // _app.tsx
import "rc-tree-select/assets/index.less";
... |
Hi TreeSelect is not rendering properly despite importing all the styles. Below is my code
import 'rc-tree-select/assets/index.less';
import TreeSelect from 'rc-tree-select';
Dropdown is not rendering correctly as can be seen from the attached screenshot. Am I missing something here or is it a bug. Please let me know
The text was updated successfully, but these errors were encountered: