import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { ThemeProvider } from 'emotion-theming'; import HintOfLace from './components/HintOfLace'; import theme from './theme'; class Fashion extends Component { constructor(props) { super(props); this.state = { knowFashion: false, fashionIsFriend: false, posing: 'like a swan', }; } static propTypes = { data: PropTypes.shape({ jazzercise: PropTypes.string.isRequired, lipgloss: PropTypes.number.isRequired, }).isRequired, }; render() { const { jazzercise, lipgloss } = this.props; const { knowFashion, posing } = this.state; return (

Hey! He-hey-hey! Hey!

); } } export default Fashion;