This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / repo / Readme.stories.svelte
607 B 27 lines
1<script module lang="ts"> 2 import { defineMeta } from "@storybook/addon-svelte-csf"; 3 import Readme from "./Readme.svelte"; 4 5 const contents = `# tangled 6 7social code collaboration for the at protocol. 8 9## getting started 10 11\`pnpm install\`\n\n\`pnpm dev\``; 12 13 const { Story } = defineMeta({ 14 title: "Repo/Readme", 15 component: Readme, 16 tags: ["autodocs"], 17 args: { filename: "README.md", contents } 18 }); 19</script> 20 21<Story name="Raw contents" /> 22<Story 23 name="Rendered sanitized HTML" 24 args={{ 25 html: "<h1>tangled</h1><p>social code collaboration for the at protocol.</p><h2>getting started</h2>" 26 }} 27/>