diff options
Diffstat (limited to 'src/components/atoms/layout/main.tsx')
| -rw-r--r-- | src/components/atoms/layout/main.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/atoms/layout/main.tsx b/src/components/atoms/layout/main.tsx index 4549328..d92a5c7 100644 --- a/src/components/atoms/layout/main.tsx +++ b/src/components/atoms/layout/main.tsx @@ -1,7 +1,11 @@ -import { FC } from 'react'; +import { FC, ReactNode } from 'react'; export type MainProps = { /** + * The main body. + */ + children: ReactNode; + /** * Set additional classnames to the main element. */ className?: string; |
