forked from sombochea/verdaccio-ui
ae73772a37
* refactor: added eslint-plugin-import * refactor: disable some rules for muiComponents * fix: fixed import |
||
---|---|---|
.. | ||
__snapshots__ | ||
index.ts | ||
Readme.spec.tsx | ||
Readme.tsx | ||
types.ts |
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;