Created
November 19, 2018 15:08
-
-
Save alejandrosobko/73ed45459d31ed7ba653835d479c1024 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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