react-sleek
Version:
React Sleek Component Library
16 lines (15 loc) • 380 B
TypeScript
import * as React from 'react';
import { ETheme } from '../Style/Theme';
interface IProps {
theme: ETheme;
centerContent?: boolean;
}
export default class Dashboard extends React.PureComponent<IProps> {
protected static defaultProps: Partial<IProps>;
/**
* Default to dark theme
*/
constructor(props: IProps);
render(): JSX.Element;
}
export {};