Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

127
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar

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 Denunciar

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda