Files
twenty_crm/docs/docs/contributor/frontend/ui-components/display/checkmark.mdx
Charles Bochet e70ef58f97 Live code editor for UI docs (#2351)
* Docausaurus code live editor test

* Docusaurus sandpack test

* Fix setup

* Delete files

* Fixes

* Complete work

* Fix config

* Fix config

---------

Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
2023-11-03 23:09:20 +01:00

16 lines
327 B
Plaintext

---
title: Checkmark
sidebar_position: 1
---
import { SandpackEditor} from '@site/src/ui/SandpackEditor'
<SandpackEditor
componentPath='@/ui/Checkmark/components/Checkmark'
componentCode={`import { Checkmark } from "@/ui/Checkmark/components/Checkmark";
export const MyComponent = () => {
return <Checkmark />;
}
`}
/>