UNPKG

chenw-tool

Version:

React components using pure Bootstrap 5+ which does not contain any external style and script libraries.

9 lines (8 loc) 215 B
import React from "react"; import "./EmptyNotice.scss"; interface Props { title: String; className?: String; } export default function EmptyNotice({ title, className }: Props): React.JSX.Element; export {};