Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3460 | Rev 3481 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3460 Rev 3462
Línea 2... Línea 2...
2
import { Typography, Button, Box } from '@mui/material';
2
import { Typography, Button, Box } from '@mui/material';
3
import { Add } from '@mui/icons-material';
3
import { Add } from '@mui/icons-material';
Línea 4... Línea 4...
4
 
4
 
5
export function PageHeader({ title, onAdd, labelAdd }) {
5
export function PageHeader({ title, onAdd, labelAdd }) {
6
  return (
6
  return (
7
    <Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', mb: 2 }}>
7
    <Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
Línea 8... Línea 8...
8
      <Typography variant='h1'>{title}</Typography>
8
      <Typography variant='h1'>{title}</Typography>
9
 
9
 
10
      {onAdd && (
10
      {onAdd && (