Co-authored-by: eunjae-lee <karis612@gmail.com> Co-authored-by: Shipow <shipowlata@gmail.com>
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import React from 'react';
|
||
|
||
export function Error() {
|
||
return (
|
||
<p>
|
||
We‘re unable to fetch results. You might want to check your network
|
||
connection.
|
||
</p>
|
||
);
|
||
}
|