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

View File

@@ -0,0 +1,12 @@
import React from 'react';
const Placeholder: React.FC = () => {
return (
<div
style={{ width: 250, height: 375 }}
className="animate-pulse rounded-lg bg-cool-gray-700"
/>
);
};
export default Placeholder;