UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

15 lines (13 loc) 357 B
import { IPassageProps, } from '../../passages/IPassageProps'; import { ComponentType, ReactElement, } from 'react'; export interface IAuthoringPassageContainerOwnProps { readonly children: ReactElement; readonly passageProps: IPassageProps; readonly components?: Record<string, ComponentType<any>>; readonly noBuiltInComponents?: boolean; }