[React Native] export VS export default

hyeonze·2022년 5월 24일
1

export

export const styles = StyleSheet.create({
  Detail: {
    backgroundColor: '#fff',
  },
});
import {styles} from './DetailStyles';

export default

const Informations = () => {
  return (
    <Text>Informations</Text>
  );
};

export default Informations;
import Informations from './Informations';
profile
Advanced thinking should be put into advanced code.

0개의 댓글