2
0
Files
bot/apps/builder/components/board/Board.tsx
Baptiste Arnaud da9459edf3 Add Graph draft
2021-12-16 10:51:59 +01:00

15 lines
353 B
TypeScript

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