diff --git a/src/index.tsx b/src/index.tsx index fad0811..f1bc11b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -10,6 +10,11 @@ export { default as Dialog, type DialogProps } from './components/Dialog'; export { default as Divider } from './components/Divider'; export { default as Row, type RowProps } from './components/Row'; export { default as Text, type TextProps } from './components/Text'; -export { default as TextInput, type TextInputProps } from './components/TextInput'; +export { + default as TextInput, + type TextInputProps, +} from './components/TextInput'; export * from './theme'; +export * from './stores'; +export * from './settings'; diff --git a/src/stores/index.ts b/src/stores/index.ts new file mode 100644 index 0000000..95ce78b --- /dev/null +++ b/src/stores/index.ts @@ -0,0 +1,8 @@ +// Copyright (c) 2025 Joseph Hale +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at https://mozilla.org/MPL/2.0/. + +import KeyValueStore, { type ExternalKeyValueStore } from './KeyValueStore'; +export { KeyValueStore, type ExternalKeyValueStore };