1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-02 09:35:06 +07:00
verdaccio-ui/src/components/Readme
Priscila Oliveira 111f0c50e5 feat: Added Theme and migrate to emotion@10.x 🚀 (#286)
* chore: updated emotion dependency

* feat: introduced theme

* refactor: updated emotion styles

* fix: fixed emotion error

* fix: fixed tests

* chore: add missing types

Co-Authored-By: Thomas Klein <tmkn@users.noreply.github.com>
2019-11-23 13:41:14 +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: Added Theme and migrate to emotion@10.x 🚀 (#286) 2019-11-23 13:41:14 +01: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;