UNPKG
inegicomponente
Version:
latest (0.1.11)
0.1.11
Componentes de visualizacion 2023 - Graficas
inegicomponente
/
src
/
Componentes
/
Titulo.js
11 lines
(10 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
const
Titulo
= (
{config}
) => {
console
.
log
(config);
return
(
<
div
className
=
"border p-2 bg-dark text-white"
>
<
h3
>
{config.titulo}
</
h3
>
</
div
>
) }
export
default
Titulo
;