dgdgproto/client/src/pages/SplashScreenPage/SplashScreenPage.js
Markus Schubert fc3852b3cb cleanup
2020-03-25 23:40:23 +01:00

17 lines
247 B
JavaScript

import React, { Component } from 'react';
class SplashScreenPage extends Component {
render() {
return (
<div>
<h1>
loading application...
</h1>
</div>
)
};
};
export default SplashScreenPage;