mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-08 12:59:01 -05:00
5 lines
85 B
JavaScript
5 lines
85 B
JavaScript
export function createRef(initialValue) {
|
|
return {
|
|
current: initialValue
|
|
};
|
|
} |