Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
179 views
in Technique[技术] by (71.8m points)

android - 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';
question from:https://stackoverflow.com/questions/65908158/react-native-i-want-import-2-component-with-same-name

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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"


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...