import { STORAGE_KEY } from "utils/constants" import storage from "utils/storage" import { Code } from "utils/types" export const code = reactive({ value: "", language: storage.get(STORAGE_KEY.LANGUAGE) || "Python3", }) export const input = ref("") export const output = ref("")