mirror of
https://github.com/SomboChea/ui
synced 2024-11-16 19:24:28 +07:00
e6b53c0479
* chore: migrate to eslint6 * chore: migrate to eslint6
11 lines
260 B
TypeScript
11 lines
260 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;
|