aboutsummaryrefslogtreecommitdiff
path: root/src/app/info/page.jsx
blob: 9004adebd7fa09d8da7dc5ee38251b5f1933356d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import "./info.css";

export default function Info() {
	return (
		<div className="infoPageContainer">
			<p>
				This is the anime info page. This page will display information about the queried anime when anime id is passed along the url.
			</p>
		</div>
	);
}