Proyectos de Subversion LeadersLinked - SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3481 stevensc 1
import React from 'react';
2
import { Typography } from '@mui/material';
3
 
4
import { parse } from '@utils';
5
 
3506 stevensc 6
export function CapsuleDetails({ description = '' }) {
7
  return <Typography>{parse(description)}</Typography>;
8
}