mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-04 12:47:14 +02:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
import React from 'react';
|
|
|
|
export default props => {
|
|
if (props.error) {
|
|
return (
|
|
<div>
|
|
Error!{' '}
|
|
<button type="button" onClick={props.retry}>
|
|
Retry
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
return <div align="center">Loading...</div>;
|
|
};
|