import React from 'react'; import JumpTo from './JumpTo'; import { Command } from 'cmdk'; import SearchResult from './searchResult'; const Result = (props: { result: string }) => { return ( {props.result ? : } ); }; export default Result;