@compass/variables
Last updated
import variables from "@compass/variables";
export default async function() {
const key = 'variableKey';
const scope = 'local';
const value = variables.get(key, scope);
return { value };
}import variables from "@compass/variables";
export default async function() {
const key = 'variableKey';
const value = 'Hello, World!';
const scope = 'local';
const setValue = variables.set(key, value, scope);
return { setValue };
}