@create-figma-plugin/ui
Version:
Production-grade Preact components that replicate the Figma UI design
11 lines • 309 B
JavaScript
import { h } from 'preact';
import { Text } from '../../../components/text/text.js';
import { Code } from '../code.js';
export default {
title: 'Inline Text/Code'
};
export const Default = function () {
return (h(Text, null,
h(Code, null, "Text")));
};
//# sourceMappingURL=code.stories.js.map