/* eslint-disable */

const fallback = () => {
    return (
        <div style={{ color: "black !important" }}>
            <h1>This is fallback page when device is offline </h1>
            <small>Route will fallback to this page</small>
        </div>
    );
};

export default fallback;
