7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import { Typography } from '@mui/material';
|
||
|
|
|
||
|
|
const CtrlDevolucionesPage: React.FC = () => {
|
||
|
|
return <Typography variant="h6">Página de Gestión del Control de Devoluciones</Typography>;
|
||
|
|
};
|
||
|
|
export default CtrlDevolucionesPage;
|