Created
February 16, 2019 14:35
-
-
Save cctoni/066bfc8ba7c6032d90f5113b74325a42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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