for refactoring in the future
Good
const A, B, C export { A, B, C }
Bad
export const A export const B export const C
import { A, B, C } export { A, B, C }
easy to write with COPY-AND-PASTE