13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
|
|
import DetailCampaign from '@/components/page/detail-campaign'
|
||
|
|
import SimilarNews from '@/components/page/similar-news'
|
||
|
|
import React from 'react'
|
||
|
|
|
||
|
|
export default function HeadlineDetail() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<DetailCampaign />
|
||
|
|
<SimilarNews />
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|