Skip to content
Snippets Groups Projects
Commit dc11ad18 authored by chinmayanand.pattar's avatar chinmayanand.pattar
Browse files

SearchBar

parent bb96b8ed
No related branches found
No related tags found
No related merge requests found
import React from "react";
import PropTypes from "prop-types";
import SearchBar from "components/SearchBar/SearchBar";
function Login(props) {
const onSearch =(value)=>{
}
return (
<>
<div style={{backgroundColor:'blue',padding:'50px'}}> login
<SearchBar onSearch={onSearch}/>
</div>
<div> login</div>
</>
)
);
}
Login.propTypes = {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment