added some missing copyright
Massimo Melina committed
Mar 14, 2022 at 15:55 UTC
e26955f18f2d8b78286035fda80a67468f8fdece
3 files changed
+6
shared/src/dialogs.ts
+2
@@ -1,3 +1,5 @@
1
+// This file is part of HFS - Copyright 2021-2022, Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt
2
+
3
import { createElement as h, Fragment, FunctionComponent, ReactNode, useEffect, useRef } from 'react'
4
import { proxy, useSnapshot } from 'valtio'
5
shared/src/index.ts
+2
@@ -1,3 +1,5 @@
1
+// This file is part of HFS - Copyright 2021-2022, Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt
2
+
3
import _ from 'lodash'
4
export * from './react'
5
shared/src/react.ts
+2
@@ -1,3 +1,5 @@
1
+// This file is part of HFS - Copyright 2021-2022, Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt
2
+
3
import { createElement as h, Fragment, ReactElement, ReactNode, useCallback, useEffect, useRef, useState } from 'react'
4
5
export function useIsMounted() {