mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-28 12:22:20 +08:00
11 lines
342 B
JavaScript
11 lines
342 B
JavaScript
import Stack from '@elementor/ui/Stack';
|
|
import Typography from '@elementor/ui/Typography';
|
|
|
|
export default function Update( { title, description } ) {
|
|
return (
|
|
<Stack direction={ 'column' } gap={ 2 }>
|
|
<Typography variant={ 'h6' }>{ title }</Typography>
|
|
<div dangerouslySetInnerHTML={ { __html: description } } />
|
|
</Stack>
|
|
);
|
|
}
|