1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-01 17:15:06 +07:00
verdaccio-ui/src/components/Readme
Priscila Oliveira ae73772a37 feat(eslint-config): add order rule in import
* refactor: added eslint-plugin-import

* refactor: disable some rules for muiComponents

* fix: fixed import
2019-10-07 22:19:18 +02:00
..
__snapshots__ feat: migrating flow to typescript (#47) 2019-06-20 14:37:28 +02:00
index.ts feat: migrating flow to typescript (#47) 2019-06-20 14:37:28 +02:00
Readme.spec.tsx feat(eslint-config): add order rule in import 2019-10-07 22:19:18 +02:00
Readme.tsx feat: migrating flow to typescript (#47) 2019-06-20 14:37:28 +02:00
types.ts feat: migrating flow to typescript (#47) 2019-06-20 14:37:28 +02:00

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;