import NewsContainer from "./section/NewsContainer"
import { Metadata } from "next"

export const metadata: Metadata = {
  title: "News Stand",
}

export default function News() {

  return <NewsContainer />
}
