feat(holiday): special seasonal slider added to discover :)

This commit is contained in:
sct
2020-12-18 06:14:41 +00:00
parent f88c4a6d4a
commit 908f63557c
3 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import { NextPage } from 'next';
import Holiday from '../../components/Discover/Holiday';
const HolidayPage: NextPage = () => {
return <Holiday />;
};
export default HolidayPage;