Skip to content

Instantly share code, notes, and snippets.

@srdjanRakic
Last active May 27, 2020 11:58
Show Gist options
  • Save srdjanRakic/7f170dd977db18416910fb2698481551 to your computer and use it in GitHub Desktop.
Save srdjanRakic/7f170dd977db18416910fb2698481551 to your computer and use it in GitHub Desktop.
// 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