-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import all components directly, similar to #245
- Loading branch information
1 parent
9196a87
commit 21b3e92
Showing
6 changed files
with
15 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
import emojiIndex from './utils/emoji-index/emoji-index' | ||
import store from './utils/store' | ||
import frequently from './utils/frequently' | ||
|
||
export { | ||
Picker, | ||
NimblePicker, | ||
Emoji, | ||
NimbleEmoji, | ||
Category, | ||
} from './components' | ||
|
||
export { default as emojiIndex } from './utils/emoji-index/emoji-index' | ||
export { default as NimbleEmojiIndex } from './utils/emoji-index/nimble-emoji-index' | ||
export { emojiIndex, store, frequently } | ||
export { default as store } from './utils/store' | ||
export { default as frequently } from './utils/frequently' | ||
|
||
export { default as Picker } from './components/picker/picker' | ||
export { default as NimblePicker } from './components/picker/nimble-picker' | ||
export { default as Emoji } from './components/emoji/emoji' | ||
export { default as NimbleEmoji } from './components/emoji/nimble-emoji' | ||
export { default as Category } from './components/category' |