Home Reference Source

src/components/unknown/Unknown.form.js

import UnknownEditDisplay from './editForm/Unknown.edit.display';
export default function() {
  return {
    components: [
      {
        type: 'tabs',
        key: 'tabs',
        components: [
          {
            label: 'Custom',
            key: 'display',
            weight: 0,
            components: UnknownEditDisplay
          }
        ]
      }
    ]
  };
}