mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
|
|
// react Term components add themselves
|
||
|
|
// to this object upon mounting / unmounting
|
||
|
|
// this is to allow imperative access to the
|
||
|
|
// term API, which is a performance
|
||
|
|
// optimization for the most common action
|
||
|
|
// within the system
|
||
|
|
|
||
|
|
const terms = {};
|
||
|
|
export default terms;
|