mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-05 16:30:37 +02:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
import React from 'react';
|
|
import Loading from './Loading';
|
|
|
|
export default function LoadingPage() {
|
|
return (
|
|
<div style={{ minHeight: 100, zIndex: 40000 }}>
|
|
<Loading />
|
|
</div>
|
|
);
|
|
}
|