import { Editor } from '@mirinhq/embed';
export default function YourApp() {
return (
<Editor
config={{
schema: {
components: [
{
name: 'Card',
component: Card,
props: [
{
name: 'text',
kind: {
type: 'string',
},
initialValue: 'Hello',
},
],
},
],
},
}}
/>
)
}