lbry-desktop/ui/component/common/error-text.jsx
2020-02-11 11:09:55 -05:00

13 lines
213 B
JavaScript

// @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>;
}