1
0
Fork 0
docsearch/src/Error/Error.tsx
François Chalifour fa42ab2bd9 feat(docsearch): add DocSearch for Docusaurus (#39)
Co-authored-by: eunjae-lee <karis612@gmail.com>
Co-authored-by: Shipow <shipowlata@gmail.com>
2020-03-31 17:08:28 +02:00

10 lines
183 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
export function Error() {
return (
<p>
Were unable to fetch results. You might want to check your network
connection.
</p>
);
}