Is there any way to only include certain components from the library, or is it all or nothing?
For example, in material-ui, you can
import Button from 'material-ui/Button';
instead of
import { Button } from 'material-ui';
Will I need to build my own version using npm and include it manually to get this behavior?
Is there any way to only include certain components from the library, or is it all or nothing?
For example, in material-ui, you can
import Button from 'material-ui/Button';instead of
import { Button } from 'material-ui';Will I need to build my own version using npm and include it manually to get this behavior?