✏️ Added jsDoc for some components

This commit is contained in:
2022-11-17 15:55:52 -08:00
parent 4556778a47
commit 5b6c9c8ffc
3 changed files with 19 additions and 8 deletions

View File

@@ -7,6 +7,15 @@ import { Library } from "./Library";
interface ITabulatedContentContainerProps {
category: string;
}
/**
* Component to draw the contents of a category in a table.
*
* @component
* @example
* return (
* <TabulatedContentContainer category={"library"} />
* )
*/
const TabulatedContentContainer = (
props: ITabulatedContentContainerProps,