16 lines
No EOL
270 B
TypeScript
16 lines
No EOL
270 B
TypeScript
import React from 'react';
|
|
import ContentCss from './content.module.css';
|
|
|
|
export type Props = {
|
|
children?: any;
|
|
};
|
|
|
|
export const Content = (props: Props) => {
|
|
return (
|
|
<div className={ContentCss.content}>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Content; |