Skip to content

Instantly share code, notes, and snippets.

@ELI7VH
Created January 5, 2022 02:32
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 ELI7VH/a4e9c52dd767820a502a6e1db8e72e6e to your computer and use it in GitHub Desktop.
Save ELI7VH/a4e9c52dd767820a502a6e1db8e72e6e to your computer and use it in GitHub Desktop.
impor { state } from './state'
button.onclick = () => {
console.log("state.count", state.count)
}
import { state } from './state'
state.count++
export const state = {
count: 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment