Remove obsolete getInitialState store helper func

pull/10616/head
Jared Scheib 2017-09-01 17:37:07 -04:00
parent 89dc904c8c
commit a34addc258
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
import uuid from 'node-uuid'
import defaultQueryConfig from 'src/utils/defaultQueryConfig'
export default function getInitialState() {
const panelID = uuid.v4() // for the default Panel
const queryID = uuid.v4() // for the default Query
return {
panels: {
[panelID]: {
id: panelID,
queryIds: [queryID],
},
},
queryConfigs: {
[queryID]: defaultQueryConfig(queryID),
},
}
}