Skip to content

Instantly share code, notes, and snippets.

View cdcharlebois's full-sized avatar

Conner Charlebois cdcharlebois

View GitHub Profile
/**
* @param {Nanoflow} asyncTask
* @param {Nanoflow} callback
* @returns {Promise.<void>}
*/
export async function AsyncJSAction(asyncTask, callback) {
// BEGIN USER CODE
asyncTask().then(callback)
// END USER CODE
}
@cdcharlebois
cdcharlebois / listview-masonry.css
Created February 16, 2023 22:31
Listview Masonry (Pinterest-style layout)
.listview-masonry > ul {
column-count: 3;
column-gap: 24px;
}