feat: refactor all components in common

This commit is contained in:
doprz
2024-03-04 14:41:34 -06:00
parent 28f192472b
commit e5443122b4
18 changed files with 281 additions and 288 deletions

View File

@@ -11,7 +11,7 @@ interface Props {
/**
* A wrapper component for the extension elements that adds some basic styling to them
*/
export default function ExtensionRoot(props: React.PropsWithChildren<Props>) {
export default function ExtensionRoot(props: React.PropsWithChildren<Props>): JSX.Element {
return (
<div className={styles.extensionRoot} data-testid={props.testId}>
{props.children}