+1 vote
in ReactJS by

What is the benefit of styles modules?

1 Answer

0 votes
by

It is recommended to avoid hard coding style values in components. Any values that are likely to be used across different UI components should be extracted into their own modules.

For example, these styles could be extracted into a separate component:

export const colors = {
  white,
  black,
  blue
}

export const space = [
  0,
  8,
  16,
  32,
  64
]

And then imported individually in other components:

import { space, colors } from './styles'

Related questions

0 votes
asked Nov 10, 2023 in ReactJS by GeorgeBell
0 votes
asked Dec 2, 2023 in Linux by GeorgeBell
...