Skip to content

Instantly share code, notes, and snippets.

@marensas
Last active July 10, 2018 21:08
Show Gist options
  • Save marensas/4085dfe0e4df451aac8bfb03a69cc742 to your computer and use it in GitHub Desktop.
Save marensas/4085dfe0e4df451aac8bfb03a69cc742 to your computer and use it in GitHub Desktop.
import React from "react";
class App extends React.Component {
constructor (props) {
super(props);
this.state = {
data: [],
currentTicket: 0,
finished: false,
score: '',
};
}
render () {
return (
<h1>Testas</h1>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment