Menulis beberapa komponen fungsional dalam satu file dalam reaksi

/*
|========================================================================
| How To Create Multiple Functional Components in React in Single File
|========================================================================
*/

// ====== MULTIPLE FUNCTIONAL COMPONENTS IN SINGLE FILE ======
export const component1 = () => {
   return <div>Hello From Component 1</div>
}

export const component2 = () => {
   return <div>Hello From Component 2</div>
}


// ===== IMPORT THESE COMPONENT IN ANY COMPONENT LIKE THIS =====
import {component1, component2 } from './component.js'

Copy Paster