Harshh
Harshh

Reputation: 1

React Native - I want import 2 component with same name

I want to import 2 files from same name when we are importing. like (It's Possible?):

import en from './en';
import en from './en';

Upvotes: 0

Views: 423

Answers (1)

Null
Null

Reputation: 518

Based on your example, why would you want to import the same component from the same module twice? If that is indeed what you wanted to do, you could do it as following:

import * as UniqueName1 from "./en"

import * as UniqueName2 from "./en"

Upvotes: 1

Related Questions