import React from 'react'; interface UIScreenPageProps extends React.HTMLAttributes { category?: string; } const UIScreenPage: React.FC = (props) => { const { category = 'UI Elements', children } = props; return (
{category}
{children}
); }; export default UIScreenPage;