bootstrap-based-components
Version:
A Bootstrap based package with React components
10 lines (9 loc) • 406 B
TypeScript
/// <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;