Move encoded script logic together

This commit is contained in:
Kurt Hutten
2021-06-13 06:17:01 +10:00
parent e591eb8ff8
commit c142860433
5 changed files with 102 additions and 74 deletions

View File

@@ -0,0 +1,6 @@
import { IdeContext } from 'src/pages/DevIdePage/DevIdePage'
import { useContext } from 'react'
export function useIdeContext() {
return useContext(IdeContext)
}