import { RootState } from "app/store"; export const selectIsLoading = (state: RootState) => state.licenseTrialIssue.apps.isLoading; export const selectExpirationDate = (state: RootState) => state.licenseTrialIssue.apps.expirationDate; export const selectNumberOfLicenses = (state: RootState) => state.licenseTrialIssue.apps.quantity;