2
0
Files
bot/apps/builder/components/board/Board.tsx
Baptiste Arnaud a54e42f255 🛠️ Adapt Cypress to Turbo Repo
2021-12-17 07:54:12 +01:00

15 lines
361 B
TypeScript

import { Flex } from '@chakra-ui/react'
import React from 'react'
import Graph from './graph/Graph'
import { DndContext } from 'contexts/DndContext'
import StepTypesList from './StepTypesList'
export const Board = () => (
<Flex flex="1" pos="relative" bgColor="gray.50">
<DndContext>
<StepTypesList />
<Graph />
</DndContext>
</Flex>
)