verdaccio-ui/src/components/Readme
Juan Picado @jotadeveloper e6b53c0479
chore: migrate eslint@6.6.0 (#227)
* chore: migrate to eslint6

* chore: migrate to eslint6
2019-10-27 15:49:30 +01: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 chore: migrate eslint@6.6.0 (#227) 2019-10-27 15:49:30 +01: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;