mirror of
https://github.com/SomboChea/ui
synced 2024-11-17 03:34:27 +07:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
|
import React from 'react';
|
||
|
import 'github-markdown-css';
|
||
|
|
||
|
import { Props } from './types';
|
||
|
|
||
|
const Readme: React.FC<Props> = ({ description }) => <div className="markdown-body" dangerouslySetInnerHTML={{ __html: description }} />;
|
||
|
|
||
|
export default Readme;
|