MetaPhase-Consulting/State-TalentMAP

View on GitHub
src/Components/Splash/Splash.jsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import Spinner from '../Spinner';

const Splash = () => (
  <div className="usa-grid-full" style={{ padding: '3em', height: '100vh' }}>
    <h1 style={{ textAlign: 'center', fontSize: 28 }}>Loading TalentMAP...</h1>
    <Spinner style={{ paddingLeft: 5 }} size="small" />
  </div>
);

export default Splash;