42 lines
870 B
Markdown
42 lines
870 B
Markdown
import { Meta } from '@storybook/blocks';
|
|
|
|
<Meta title="Home/Introduction" />
|
|
|
|
<style>
|
|
{`
|
|
.tip {
|
|
display: inline-block;
|
|
border-radius: 1em;
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
font-weight: 700;
|
|
background: #E7FDD8;
|
|
color: #66BF3C;
|
|
padding: 4px 12px;
|
|
margin-right: 10px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.tip-wrapper {
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
margin-top: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.tip-wrapper code {
|
|
font-size: 12px;
|
|
display: inline-block;
|
|
}
|
|
`}
|
|
</style>
|
|
|
|
# Welcome to maxGraph Stories
|
|
|
|
These Stories are built with Storybook and demonstrates some use-cases that can be solved with `maxGraph`.
|
|
|
|
<div className="tip-wrapper">
|
|
<span className="tip">Tip</span>Edit the Markdown in{' '}
|
|
<code>stories/Introduction.stories.mdx</code>
|
|
</div>
|