mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
import { Empty, type EmptyProps } from "./Empty";
|
|
|
|
const NotFound = (props: Partial<EmptyProps>) => <Empty title="Not Found" {...props} />;
|
|
const NotAllowed = (props: Partial<EmptyProps>) => <Empty title="Not Allowed" {...props} />;
|
|
|
|
export const Message = {
|
|
NotFound,
|
|
NotAllowed
|
|
};
|