-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Labels
Description
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!