/** * Live preview harness — edit freely. Nothing is saved. * * - Import any Cinny module via `@cinny/...` * - Use mocks / PlaygroundProviders from `@playground/mocks` * - `export default` the component to render in the stage */ import { Message } from '@cinny/app/features/room/message'; import { MessageLayout } from '@cinny/app/state/settings'; import { Box, Text } from 'folds'; import { mocks } from '@playground/mocks'; export default function Preview() { const room = mocks.room; const mEvent = mocks.event; return ( Preview harness — swap imports to any `@cinny/...` export undefined} onUsernameClick={() => undefined} onReplyClick={() => undefined} onReactionToggle={() => undefined} > {mEvent.getContent().body} ); }