1
0
Fork 0
VaultUI/src/playground.js

15 lines
471 B
JavaScript
Raw Normal View History

2021-05-07 23:08:02 +01:00
import { pageState } from "./globalPageState.ts";
import i18next from 'i18next';
// Playground is a way to debug and test things.
// Anything you put in here is gonna be run on page initial load
// before rendering.
// Also it only runs when process.env.NODE_ENV == "development"
// Please empty this function before committing.
export async function playground() {
console.log("Welcome to Playground!");
window.pageState = pageState;
window.i18next = i18next;
}