bryntum / support

An issues-only repository for the Bryntum project management component suite which includes powerful Grid, Scheduler, Calendar, Kanban Task Board and Gantt chart components all built in pure JS / CSS / TypeScript
https://www.bryntum.com
54 stars 6 forks source link

Make a demo using styled-components #9885

Open isglass opened 2 months ago

isglass commented 2 months ago

Wrap our component in styled.div to style it:


const SchedulerStyle = styled.div`
  .b-sch-event {
    ...
  }
`

...

<SchedulerStyle>
  <BryntumScheduler ...>
</SchedulerStyle>