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