mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
32 lines
718 B
Plaintext
32 lines
718 B
Plaintext
````md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
|
|
|
|
<Meta title="A Storybook story with a custom syntax highlight for SCSS" />
|
|
|
|
# SCSS example
|
|
|
|
This is a sample SCSS code block example highlighted in Storybook
|
|
|
|
<!-- Don't forget to replace (") with (```) when you copy the snippet to your own app -->
|
|
|
|
"scss
|
|
$font-stack: Helvetica, sans-serif;
|
|
$primary-color: #333;
|
|
|
|
body {
|
|
font: 100% $font-stack;
|
|
color: $primary-color;
|
|
}
|
|
"
|
|
|
|
<!-- The usage of this "Component" is intentional to enable react-syntax-highlighter's own highlighter -->
|
|
|
|
export const Component = () => {
|
|
return <SyntaxHighlighter/>;
|
|
};
|
|
````
|