Hello,
I tried to copy a Dashboard component into a new Configuration one. I use CSS BEM notation in this project, so CSS classes are like Dasboard__JobList. The issue is that classes are not updated:
render() {
return <section className="Configuration">
<Content>
<Title>Jobs</Title>
<div className="Dashboard__JobList">
{ /* ... */ }
</div>
</Content>
</section>;
};
I'll create a PR soon solving this issue. Can you give me any hint to keep in mind for developing your library?
Thanks!
Hello,
I tried to copy a
Dashboardcomponent into a newConfigurationone. I use CSS BEM notation in this project, so CSS classes are likeDasboard__JobList. The issue is that classes are not updated:I'll create a PR soon solving this issue. Can you give me any hint to keep in mind for developing your library?
Thanks!