import React from 'react';
import Navbar from "@/components/_App/Navbar";
import Footer from "@/components/_App/Footer";
import PageBanner from '@/components/Common/PageBanner';
import LatestNews from '@/components/Company/LatestNews/LatestNews';
const News = function ({ backend, news, othernews, ...props }) {
return (
<>
>
)
}
export default News;
export async function getServerSideProps(context) {
var news = [];
var othernews = [];
const backend = process.env.BACKEND_SERVER_URI;
// var res = await GetLatestNews.GetNewsYamaha();
// if (res["STATUS"] === 1) {
// news = res["DATA"]["latestNews"];
// }
// var res = await GetLatestNews.GetOtherNewsYamaha();
// if (res["STATUS"] === 1) {
// othernews = res["DATA"]["latestNews"];
// }
return {
props: { news, othernews, backend }, // will be passed to the page component as props
};
}