Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

124
Views
I want to add 2 const arrays in 1 file of React JS. For example is below

I Want to add 2 array const in 1 file in React JS.

I want to print Breakfast Menu when a link is selected and Lunch Menu similarly but I want to keep them in 1 file

I didn't change the name of Note file because it gave an error of file not found

This is my GitHub repo: https://github.com/mareyam/Maryam-s-Company-Menu

And here is my project structure:

enter image description here

Note file

const BreakfastMenu = [
  {
    id:1,
    h:"Eggs",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]

const LunchMenu = [
  {
    id:1,
    h:"Tomato",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]


export default {BreakfastMenu, LunchMenu};

breakfast file

import React from 'react';
import BreakfastMenu from "./BreakfastMenu";
import Menu from "./Menu";

function nCard(val)
{
    return(
        <Menu
                h={val.h}
                p={val.p}
        />
    );
}
const Breakfast = (props) =>
{     
    return ( 
        BreakfastMenu.map(nCard)
    )
}
export default Breakfast; 
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

Use exports as follows

// Note.js
const BreakfastMenu = [
  {
    id:1,
    h:"Eggs",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]

const LunchMenu = [
  {
    id:1,
    h:"Tomato",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]


export {BreakfastMenu, LunchMenu};

Then do the imports as follows.

import { BreakfastMenu } from "./Note";
import { LunchMenu } from "./Note";
about 4 years ago · Juan Pablo Isaza Report

0

You will need to setup webpack in order to use import export

And then change your export/import like so:

Note file

export { BreakfastMenu, LunchMenu };

And to import:

import { BreakfastMenu, LunchMenu } from "./Note";

Working example:

Edit heuristic-raman-of93f

about 4 years ago · Juan Pablo Isaza Report

0

export const BreakfastMenu = [
  {
    id:1,
    h:"Eggs",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]

export const LunchMenu = [
  {
    id:1,
    h:"Tomato",
    p:"eggs",
  },
  {
    id:2,
    h:"Milk",
    p:"milk",
  }
]

SInce they are multiple arrays there can be one default but better still still export each of the array or function from the start. Then In your import you can use curly brackets to access the functions or array block

import { BreakfastMenu, LunchMenu } from "./Note";

This works with multiple functions in the same JS file too.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!