weareinreach / InReach

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
6 days agoa year old
Documentation comment not found for arrow function getServerSideProps
301	)
302}
303
304export const getServerSideProps: GetServerSideProps<Record<string, unknown>, '/search/[...params]'> = async ({305	locale,
306	query,
307	req,
Documentation comment not found for arrow function SearchResults
103)
104NoResults.displayName = 'NoResults'
105
106const SearchResults = () => {107	const router = useRouter<'/search/[...params]'>()
108	const { searchState, searchStateActions } = useSearchState()
109	const theme = useMantineTheme()
Documentation comment not found for arrow function getStaticProps
152		fallback: 'blocking',
153	}
154}
155export const getStaticProps = async ({156	params,
157	locale,
158}: GetStaticPropsContext<RoutedQuery<'/search/intl/[country]'>>) => {
Documentation comment not found for arrow function getStaticPaths
146		</>
147	)
148}
149export const getStaticPaths: GetStaticPaths = async () => {150	return {
151		paths: [],
152		fallback: 'blocking',
Documentation comment not found for arrow function OutsideServiceArea
 70
 71const notBlank = (value?: string) => !!value && value.length > 0
 72
 73const OutsideServiceArea = () => { 74	const [loading, setLoading] = useState(false)
 75	const { classes } = useStyles()
 76	const variants = useCustomVariant()