aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/page.js
blob: 964bba5967e820c7b931078e88c3e4a8583050c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import './anime.css'
import Trending from '../top-airing/page'
import Releases from '../recent/page'

export default async function Anime() {
	return (
		<div>
			<Trending />
			<Releases />	
		</div>
	)
}