TryGhost/Ghost

View on GitHub
apps/admin-x-design-system/src/Boilerplate.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

interface BoilerPlateProps {
    children?: React.ReactNode;
}

const BoilerPlate: React.FC<BoilerPlateProps> = ({children}) => {
    return (
        <>
            {children}
        </>
    );
};

export default BoilerPlate;