15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import React from "react";
|
|
import SearchBarContainer from "vtex.store-components/SearchBar";
|
|
import styles from "./MenuSearch.css";
|
|
|
|
const MenuSearch = () => {
|
|
|
|
return (
|
|
<div className={styles.MenuSearch}>
|
|
<SearchBarContainer/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { MenuSearch };
|