feat(frontend): initial search functionality (#78)

This commit is contained in:
sct
2020-09-12 10:49:48 +09:00
committed by GitHub
parent 3722a495dd
commit 342d1a3c75
14 changed files with 450 additions and 70 deletions

8
src/pages/search.tsx Normal file
View File

@@ -0,0 +1,8 @@
import React from 'react';
import Search from '../components/Search';
const SearchPage: React.FC = () => {
return <Search />;
};
export default SearchPage;