Why do we use curly brace while importing some library?

Technology CommunityCategory: React NativeWhy do we use curly brace while importing some library?
VietMX Staff asked 3 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.