17 lines
247 B
JavaScript
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;
|