import { Highlight } from "@mantine/core" import { useAppSelector } from "@/app/store" import type { Entry } from "@/app/types" export interface FeedEntryTitleProps { entry: Entry } export function FeedEntryTitle(props: Readonly) { const search = useAppSelector(state => state.entries.search) const keywords = search?.split(" ") return ( {props.entry.title} ) }