Skip to content

Instantly share code, notes, and snippets.

@codingnninja
Last active August 4, 2019 13:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingnninja/72df2fe2ebd014de2d5f14434e37a1d6 to your computer and use it in GitHub Desktop.
Save codingnninja/72df2fe2ebd014de2d5f14434e37a1d6 to your computer and use it in GitHub Desktop.
React state setup for FoodReca
import React from 'react';
class App extends React.Component {
constructor() {
super();
this.state = {
id: null,
userId: 1,
food: '',
cost: '',
status: false,
foodItem: {},
foodItems: [],
editing: false
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment