Skip to content

Instantly share code, notes, and snippets.

View JosephShering's full-sized avatar
🏠
Working from home

Boons JosephShering

🏠
Working from home
  • Pathwaay
  • Denver, CO
View GitHub Profile
import React, { Component } from 'react';
import Party from './Party.jsx';
class App extends Component {
constructor(props) {
super(props);
this.state = {
parties: []
};
import React, { Component } from 'react';
import Party from './Party.jsx';
exports default class App extends Component {
getParties() {
// get a list of the parties currently.
return [];
},