PR-188649:

Adding Storybook.
This commit is contained in:
2022-05-30 18:46:55 +00:00
parent c693b4f6a2
commit aa4ac6761b
16 changed files with 29652 additions and 27 deletions

View File

@ -2,7 +2,13 @@ import React, { FC } from "react";
import "./style.sass";
type TCardProps = {
/**
* Is this the title of the card.
*/
title?: string,
/**
* Is this the child component of the card. (The content)
*/
children?: JSX.Element,
};