async componentDidMount() {
    let stories = await fetch(`${config.apiEntry}/api/stories`);
    let storyJson = await stories.json();

    this.setState({ loading: false, stories: storyJson });