church-website/src/hooks/useLocationName.ts
2024-08-22 11:04:22 +02:00

12 lines
248 B
TypeScript

import { Church } from '@/payload-types'
/**
* Get user friendly location name
*/
export const useLocationName = (location: string | Church) => {
if (typeof location == 'string') {
return location
} else {
return location.name
}
}