import { BaseBox, Spacing, TextCustom } from "@/components"; export default function Investment_BoxNews({ item }: { item: { id: string; title: string } }) { return ( <> {item.title} ); }