Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3481 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3481 Rev 3506
Línea 1... Línea 1...
1
import React from 'react';
1
import React from 'react';
2
import { Typography } from '@mui/material';
2
import { Typography } from '@mui/material';
Línea 3... Línea 3...
3
 
3
 
4
import { parse } from '@utils';
-
 
Línea 5... Línea 4...
5
import { useCapsule } from '@microlearning/hooks';
4
import { parse } from '@utils';
6
 
-
 
7
const CapsuleDetails = () => {
-
 
8
  const { capsule } = useCapsule();
5
 
9
 
6
export function CapsuleDetails({ description = '' }) {
10
  return <Typography>{parse(capsule.description)}</Typography>;
-
 
11
};
-