13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
|
|
import {FormProperties} from "./formInterfaces";
|
||
|
|
import {contact} from "./data/contact";
|
||
|
|
|
||
|
|
const formProperties: FormProperties[] = [
|
||
|
|
{
|
||
|
|
path: 'contact',
|
||
|
|
formData: contact
|
||
|
|
},
|
||
|
|
]
|
||
|
|
|
||
|
|
export function getFormProperties(): FormProperties[] {
|
||
|
|
return formProperties
|
||
|
|
}
|