mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-29 13:33:06 +00:00
12 lines
232 B
JavaScript
12 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;
|
|
};
|