UNPKG

bootstrap-based-components

Version:
10 lines (9 loc) 406 B
/// <reference types="react" /> import RoutesConfig from '../@types/RoutesConfig'; import './style.scss'; interface DisplayContainerProps<T extends string | number | symbol> { config: RoutesConfig<T>; className?: string; } declare function DisplayContainer<T extends string | number | symbol>({ config, className }: DisplayContainerProps<T>): JSX.Element; export default DisplayContainer;