UNPKG
bidasoa-components
Version:
latest (1.0.0)
1.0.0
Colección de componentes comunes empleados en proyectos Bidasoa.
bidasoa-components
/
dist
/
ParagraphHtmlEmbed
/
ParagraphHtmlEmbed.d.ts
15 lines
(14 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
React
from
'react'
;
interface
Props
{
contentHTML
: {
value
:
string
; };
contentCSS
?: {
value
:
string
; };
contentJavascript
?: {
value
:
string
; }; }
export
declare
const
ParagraphHtmlEmbed
:
React
.
FC
<
Props
>;
export
{};