import React from 'react'; interface NoResultProps { keyword: string; resourseLinks?: { url: string; name: string; }[]; } export function NoResult({ keyword = '', resourseLinks = [] }: NoResultProps) { return (