mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-02 09:59:55 +08:00
20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
import React from 'react';
|
|
import NoResult from './NotFound';
|
|
import { Command } from 'cmdk';
|
|
|
|
const SearchResult = () => {
|
|
return (
|
|
<>
|
|
<NoResult />
|
|
<Command.Group heading="Letters">
|
|
<Command.Item>a</Command.Item>
|
|
<Command.Item>b</Command.Item>
|
|
<Command.Item>c</Command.Item>
|
|
</Command.Group>
|
|
<Command.Item>Apple</Command.Item>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SearchResult;
|