mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 13:53:23 +00:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
import type {JSX, ReactNode} from 'react';
|
|
import styles from './BodyWrapper.module.scss';
|
|
|
|
type WrapperProperties = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
function BodyWrapper({children}: WrapperProperties): JSX.Element {
|
|
return <div className={styles.wrapper}>{children}</div>;
|
|
}
|
|
|
|
export default BodyWrapper;
|