mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-02 11:47:23 +02:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
import React from 'react';
|
|
|
|
export default props => {
|
|
if (props.error) {
|
|
return <div align="center">Error 🔥🔥🔥</div>;
|
|
}
|
|
if (props.pastDelay) {
|
|
return <div align="center">Loading...</div>;
|
|
}
|
|
return null;
|
|
};
|