1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-13 23:11:37 +07:00
verdaccio-ui/src/components/NoItems/index.js

17 lines
242 B
JavaScript
Raw Normal View History

2019-02-03 17:23:33 +07:00
/**
* @prettier
* @flow
*/
import React from 'react';
import { IProps } from './types';
import { Wrapper } from './styles';
const NoItems = ({ text }: IProps) => (
<Wrapper>
<h2>{text}</h2>
</Wrapper>
);
export default NoItems;