// file1.js
import styled from "styled-components";
export const myDiv = styled.div``;
export const myLabel = styled.label``;
// input.js --> 入力ファイルをロールアップしてバンドルする
import {myDiv} from "./file1"
export {myDiv};
理想的には、myLabel は、treeshaking に従ってインポートされないため、バンドルされるべきではありません。ただし、バンドルには myDiv と myLabel の両方が含まれます。
理解を助けてください。