UNPKG

@strawbinary-io/api-video-strapi-5-plugin

Version:

A powerful Strapi plugin to easily manage your videos and integrate them in your project

9 lines (8 loc) 213 B
import { FC } from 'react'; interface SearchBarProps { clearSearch: () => void; handleSearch: (e: any) => void; search: string; } declare const SearchBar: FC<SearchBarProps>; export default SearchBar;