Skip to content

Commit e83b335

Browse files
committed
add helpful comment
1 parent ce930cb commit e83b335

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/layout.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ export const PageContainer: FC<React.PropsWithChildren<unknown>> = ({
1313
return <div className={`vh-100 d-flex flex-column`}>{children}</div>
1414
}
1515

16+
/**
17+
* Props for the Layout component.
18+
*
19+
* @property {string} [titleI18nKey] - The internationalization key for the title.
20+
* This key must be defined in the `common.json` namespace.
21+
*/
1622
export type LayoutProps = {
1723
titleI18nKey?: string
1824
}

0 commit comments

Comments
 (0)