fix: some details

This commit is contained in:
Daniel Soares
2021-12-15 08:11:58 -03:00
parent 2f4dd0097b
commit 5df44ceddc
22 changed files with 330 additions and 118 deletions

View File

@@ -0,0 +1,17 @@
import { ButtonsStyleSelect } from '../ButtonsStyleSelect'
import { DescriptionInput } from '../DescriptionInput'
import { FontsSelect } from '../FontsSelect'
import { NameInput } from '../NameInput'
import { OutlineCheckbox } from '../OutlineCheckbox'
export function DataSettings() {
return (
<div>
<NameInput />
<DescriptionInput />
<FontsSelect />
<ButtonsStyleSelect />
<OutlineCheckbox />
</div>
)
}