1
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-08-03 16:53:44 +08:00
hello-theme/modules/admin-home/assets/js/components/settings/update.js

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>
);
}