Open15

mantine乗り換えメモ

terrierscriptterrierscript
  • Providerとthemeとcss importを一緒にまとめておくと便利そう
terrierscriptterrierscript
  • theme
components: {
    Popover: {
      defaultProps: {
        radius: "md",
     }
  }
}

みたいにしてデフォルトのコンポーネント設定

terrierscriptterrierscript

color palette系でgray.200とか残ってるとランタイムエラーが起きるのマジ怖い。

const createColorArray = (colors: MantineColorsTuple): MantineColorsTuple => {
  const colorSteps = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900]

  return colorSteps.reduce((result, step, index) => {
    result[step] = colors[index + 1]
    return result
  }, [...colors])

}