feat: add quick search UI

This commit is contained in:
JimmFly
2022-12-08 20:21:58 +08:00
parent 0d041aa5e8
commit 11eb9b90d1
8 changed files with 232 additions and 10 deletions
@@ -0,0 +1,14 @@
import React from 'react';
const Result = () => {
return (
<div>
<div>Jump to</div>
<div>All pages</div>
<div>Favorites</div>
<div>Trash</div>
</div>
);
};
export default Result;