This commit is contained in:
2024-03-22 06:57:57 +05:30
parent 0233bb9dfd
commit ebf9bf56f3
20 changed files with 135 additions and 33 deletions

10
src/theme/SearchBar.js Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import SearchBar from '@theme-original/SearchBar';
export default function SearchBarWrapper(props) {
return (
<>
<SearchBar {...props} />
</>
);
}