2
0

feat(editor): ️ Improve graph navigation setting

This commit is contained in:
Baptiste Arnaud
2022-04-08 15:10:21 -05:00
parent c5d3b9214d
commit 4502e68065
5 changed files with 106 additions and 74 deletions

View File

@ -4,10 +4,11 @@ import { NextChakraLink } from 'components/nextChakra/NextChakraLink'
import React from 'react'
import { PersonalInfoForm } from 'components/account/PersonalInfoForm'
import { BillingSection } from 'components/account/BillingSection'
import { EditorSection } from 'components/account/EditorSection'
export const AccountContent = () => {
return (
<Flex h="full" w="full" justifyContent="center" align="flex-start">
<Flex h="full" w="full" justifyContent="center" align="flex-start" pb="20">
<Stack maxW="600px" w="full" pt="4" spacing={10}>
<Flex>
<Button
@ -28,6 +29,8 @@ export const AccountContent = () => {
<PersonalInfoForm />
<Divider />
<BillingSection />
<Divider />
<EditorSection />
</Stack>
</Flex>
)