Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1848 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1847 stevensc 1
import React from 'react'
2
import { CardHeader } from '@mui/material'
3
 
4
import WidgetWrapper from '../widgets/WidgetLayout'
5
 
6
const ProfileWidget = ({ title = '', action = null, children }) => {
7
  return (
8
    <WidgetWrapper>
9
      <CardHeader title={title} action={action} />
10
      {children}
11
    </WidgetWrapper>
12
  )
13
}
14
 
15
export default ProfileWidget