lbry-desktop/ui/component/common/error-text.jsx

13 lines
213 B
React
Raw Normal View History

2020-02-06 19:49:05 +01:00
// @flow
import React from 'react';
type Props = {
children: any,
};
export default function ErrorText(props: Props) {
const { children } = props;
return <span className="error-text">{children}</span>;
}