6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import {type ProfileHoverCardProps} from './types'
|
|
|
|
export function ProfileHoverCard({children}: ProfileHoverCardProps) {
|
|
return children
|
|
}
|