Skip to content

Instantly share code, notes, and snippets.

View rherugu's full-sized avatar
🎃

Raghav Herugu rherugu

🎃
View GitHub Profile
class Shop extends Component {
onClickHome = () => {
this.props.history.push("/");
};
onClickShop = () => {
this.props.history.push("/Shop");
};
onClickAbout = () => {
this.props.history.push("/About");
};