Skip to content

Instantly share code, notes, and snippets.

@cctoni
Created February 16, 2019 14:35
Show Gist options
  • Select an option

  • Save cctoni/066bfc8ba7c6032d90f5113b74325a42 to your computer and use it in GitHub Desktop.

Select an option

Save cctoni/066bfc8ba7c6032d90f5113b74325a42 to your computer and use it in GitHub Desktop.
import React, { Component } from "react";
import { Backpack } from "react-kawaii";
class Packy extends Component {
componentWillUnmount() {
alert(`Bye, bye 👋 \n I have to start my journey! 🗺`);
}
render() {
return <Backpack size={200} mood="excited" color="#FFD882" />;
}
}
export default Packy;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment