• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DamianMullins / Coinsly / #157

pending completion
#157

push

web-flow
Merge branch 'master' into snyk-upgrade-ade14345fc7541396547a3069b402223

5 of 78 branches covered (6.41%)

Branch coverage included in aggregate %.

11 of 266 relevant lines covered (4.14%)

0.15 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/components/App.js
1
import React, { Component, Fragment } from 'react';
2
import PropTypes from 'prop-types';
3

4
import LoadingContainer from '../containers/LoadingContainer';
5
import HeaderContainer from '../containers/HeaderContainer';
6
import DetailsContainer from '../containers/DetailsContainer';
7
import MenuContainer from '../containers/MenuContainer';
8
import CoinListContainer from '../containers/CoinListContainer';
9

10
import '../styles/global.scss';
11

12
class App extends Component {
13
  componentDidMount() {
14
    this.props.onAuthChanged();
×
15
  }
16

17
  render() {
18
    return (
×
19
      <Fragment>
20
        <LoadingContainer />
21
        <MenuContainer />
22
        <HeaderContainer />
23
        <DetailsContainer />
24
        <CoinListContainer />
25
      </Fragment>
26
    );
27
  }
28
}
29

30
App.propTypes = {
×
31
  onAuthChanged: PropTypes.func.isRequired,
32
  setInitialState: PropTypes.func.isRequired
33
};
34

35
export default App;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc