Skip to content

Instantly share code, notes, and snippets.

View ahartzog's full-sized avatar
🏠
Working from home

Alek Hartzog ahartzog

🏠
Working from home
View GitHub Profile
//Inside componentDidMount
setTimeout(() => {
const slowComp = (
<WorkoutEntryEditWrapper
navigation={this.props.navigation}
withFetchWorkoutsData={this.props.workoutLogsList}
/>
);
this.setState({ loading: false, slowComp });
}, 0);