import React from 'react';
import { render } from '@testing-library/react';
import Maintenance from './Maintenance';
describe('', () => {
it('renders with all the props', () => {
const { container } = render();
expect(container).toMatchSnapshot();
});
});