To display the page for user fast i must to show it before i fetches data if the page was refreshed. Selecting data from store can throw error like "reading property of undefined". To evade it i just use lodash get and it handles that error and returns null in reselect fucntions chain like that:
export const getSomething= createSelector(
[data],
(d) => _.get(d, 'property', null),
);
Now it will return data when the store is populated, but for the first second it will return null and viewer will see styled page without some data till it will be fetched and selected. Is it good practice to use _.get or there some any better solutions?