diff --git a/main.py b/main.py index 6cb5fd9..74c963d 100644 --- a/main.py +++ b/main.py @@ -1 +1,15 @@ -print("") \ No newline at end of file +class Cat extends React.Component { + constructor(props) { + super(props); + this.state = { humor: 'happy' }; + } + + render() { + return ( +
+

{this.props.name}

+

{this.props.color}

+
+ ); + } +}