Why do we use curly brace while importing some library? Technology Community › Category: React Native › Why do we use curly brace while importing some library? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Problem Consider: import { Text, StyleSheet } from "react-native"; Curly braces are used to import small pieces of library. In above example we just want to make use of Text and StyleSheet component from react-native, so they are put in curly braces.