import IndexField from './components/IndexField' import DetailField from './components/DetailField' import FormField from './components/FormField' Nova.booting((app, store) => { app.component('index-inline-relationship', IndexField) app.component('detail-inline-relationship', DetailField) app.component('form-inline-relationship', FormField) })