10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import React from 'react';
|
|
import type { NextPage } from 'next';
|
|
import Trending from '../../components/Discover/Trending';
|
|
|
|
const TrendingPage: NextPage = () => {
|
|
return <Trending />;
|
|
};
|
|
|
|
export default TrendingPage;
|