I´m using a regular react styleguidist and tried to use it with ant design. But the components are not looking like they are supposed to. I installed antd in the project also.
I have not really a clue what could be the mistake?
I´m using a regular react styleguidist and tried to use it with ant design. But the components are not looking like they are supposed to. I installed antd in the project also.
I have not really a clue what could be the mistake?
I think you forgot to include antd(theme) antd.css
import your antd style guide like below in your root component.
import 'antd/dist/antd.css';
You need to import antd.css
check out How to import whole antd style or How to use in create-react-app docs.
import "antd/dist/antd.css";