選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.tsx 303B

12345678910111213
  1. import Circle from "./circle"
  2. import Dot from "./dot"
  3. import Polyline from "./polyline"
  4. import Rectangle from "./rectangle"
  5. import { ShapeType } from "types"
  6. export default {
  7. [ShapeType.Circle]: Circle,
  8. [ShapeType.Dot]: Dot,
  9. [ShapeType.Polyline]: Polyline,
  10. [ShapeType.Rectangle]: Rectangle,
  11. }