mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
Matthias Kretschmann
436babf4ba
* add CUDOS calculations * content updates * token order switch * uniswap quote fix * list & link community proposals * migration tool scenario simplification * rename Uniswap label * ratio harmonization * buy ratio fix * copy updates * copy updates * default to 1000 CUDOS
13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import content from '@/content.md'
|
|
import Markdown from 'react-markdown'
|
|
import remarkGfm from 'remark-gfm'
|
|
import styles from './Content.module.css'
|
|
|
|
export function Content() {
|
|
return (
|
|
<Markdown className={styles.content} remarkPlugins={[remarkGfm]}>
|
|
{content}
|
|
</Markdown>
|
|
)
|
|
}
|