Skip to content

Instantly share code, notes, and snippets.

@EvanGertis
Created February 1, 2019 14:36
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 EvanGertis/4e93cb95627ca4ec9b7011dd7698d64e to your computer and use it in GitHub Desktop.
Save EvanGertis/4e93cb95627ca4ec9b7011dd7698d64e to your computer and use it in GitHub Desktop.
// generates a parent container to store grid squares.
function UI_box(UI_box_number){
UI_body = document.createElement("div");
body[0].append(UI_body);
UI_body.setAttribute("id", UI_box_number);
UI_body.style.display = "flex";
return UI_body;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment