fix(form): incorrect imports

This commit is contained in:
Ayo 2022-10-21 15:21:50 +02:00
parent 304100fa5f
commit 82c121a85d

View file

@ -1,7 +1,8 @@
--- ---
import { Submit, FormGroup, FormControl, Radio, RadioOption } from './core'; import type { Submit, Radio, RadioOption } from 'common/types';
import Field from './components/Field.astro'; import { FormGroup, FormControl } from './core';
import FieldSet from './components/FieldSet.astro'; import FieldSet from './components/FieldSet.astro';
import Field from './components/Field.astro';
export interface Props { export interface Props {
formGroups: FormGroup | FormGroup[]; formGroups: FormGroup | FormGroup[];