Introduce PureComponent to reduce `render` method calling by pocke · Pull Request #10 · yhara/ovto

What is PureComponent? PureComponent is a Component, but it caches render's result to skip render method calling if the attributes are same. I got the idea from React's PureComponent. Examp...