Last active
May 27, 2020 11:58
-
-
Save srdjanRakic/7f170dd977db18416910fb2698481551 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// imports whole library | |
import { Label, Input, TextArea } from '@inplayer-org/inplayer-ui'; | |
// imports whole library too | |
// because the *src/index.js* from the library imports/exports Label component | |
import { Label } from '@inplayer-org/inplayer-ui'; | |
// imports Label as standalone component | |
// without import whole library | |
import Label from '@inplayer-org/inplayer-ui/lib/Label';; | |
// imports Input as standalone component | |
// without import whole library | |
import Input from '@inplayer-org/inplayer-ui/lib/Input'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment