1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-18 00:56:00 +07:00

chore: sync with verdaccio master

This commit is contained in:
Juan Picado @jotadeveloper
2019-04-04 21:23:40 +02:00
parent 133a5f0171
commit 3506f32ad8
241 changed files with 57691 additions and 1932 deletions

View File

@@ -1,13 +0,0 @@
/**
* @prettier
* @flow
*/
import React from 'react';
import 'github-markdown-css';
import { IProps } from './types';
const Readme = ({ description }: IProps) => <div className={'markdown-body'} dangerouslySetInnerHTML={{ __html: description }} />;
export default Readme;

View File

@@ -1,8 +0,0 @@
/**
* @prettier
* @flow
*/
export interface IProps {
description: string;
}