p
export const treeFetched = (): AppThunk => (dispatch: AppDispatch) => {
dispatch(treeListSlice.actions.fetchingStarted())
get('/api/content')
.then((json) => {
dispatch(treeListSlice.actions.fetchingSucceed(json))
})
.catch((err) => console.log(err))
}



