@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
13 lines (12 loc) • 343 B
TypeScript
export interface NotFoundProps {
/**
* @default "Not Found"
* The text to be displayed when this component is rendered
*/
text?: string;
/**
* @default "The resource requested could not be found on this server!"
* The details to be displayed when this component is rendered
*/
details?: string;
}