mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
15 lines
No EOL
255 B
TypeScript
15 lines
No EOL
255 B
TypeScript
import React from 'react';
|
|
|
|
interface BoilerPlateProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const BoilerPlate: React.FC<BoilerPlateProps> = ({children}) => {
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BoilerPlate; |