Rev 1848 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import { CardHeader } from '@mui/material'
import WidgetWrapper from '../widgets/WidgetLayout'
const ProfileWidget = ({ title = '', action = null, children }) => {
return (
<WidgetWrapper>
<CardHeader title={title} action={action} />
{children}
</WidgetWrapper>
)
}
export default ProfileWidget