Skip to content

Instantly share code, notes, and snippets.

@Will-Sommers
Created June 30, 2014 18:26
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 Will-Sommers/1b86f4ca097237e87868 to your computer and use it in GitHub Desktop.
Save Will-Sommers/1b86f4ca097237e87868 to your computer and use it in GitHub Desktop.
(def app-state (atom {:board-info {:board-name "My Board"
:starred false
:private false}
:sidebar {:open true}
:columns [{:name "To Do" :cards [{:task "Sidebar"
:id 0}
{:task "Header"
:id 1}
{:task "Create new board"
:id 2}]
:state {:add-header? false
:add-card? false
}}
{:name "Doing" :cards [{:task "Drag Lists"
:id 1}
{:task "Drag Cards"
:id 2}
{:task "Make it look pretty"
:id 3}
{:task "Handle Resizing"
:id 4}
{:task "placeholder"
:id 5}
{:task "placeholder"
:id 6}
{:task "placeholder"
:id 7}
{:task "placeholder"
:id 8}
{:task "placeholder"
:id 9}
{:task "placeholder"
:id 10}
{:task "placeholder"
:id 11}
{:task "placeholder"
:id 12}]
:state {:add-header? false
:add-card? false
}}
{:name "Done" :cards []
:state {:add-header? false
:add-card? false
}}]}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment