Skip to content

Instantly share code, notes, and snippets.

View amsardesai's full-sized avatar
🌁

Ankit Sardesai amsardesai

🌁
View GitHub Profile
@amsardesai
amsardesai / DynamicView.js
Last active March 2, 2016 23:01
Higher order component that sets a component's title in a redux store
import { Component } from "react";
import addTitle from "./addTitle";
class DynamicView extends Component {
render() {
return <h1>{this.props.title}</h1>;
}
}