Skip to content

Instantly share code, notes, and snippets.

@alejandrosobko
Created November 19, 2018 15:08
Show Gist options
  • Save alejandrosobko/73ed45459d31ed7ba653835d479c1024 to your computer and use it in GitHub Desktop.
Save alejandrosobko/73ed45459d31ed7ba653835d479c1024 to your computer and use it in GitHub Desktop.
const initialData = {
column: {
id: 'column-1',
numberIds: ['four', 'one', 'five', 'three', 'two'],
},
numbers: {
'five': { id: 'five', content: '5' },
'four': { id: 'four', content: '4' },
'one': { id: 'one', content: '1' },
'three': { id: 'three', content: '3' },
'two': { id: 'two', content: '2' },
}
};
export default initialData;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment