import React, { createContext} from 'react'
export const CarContext = createContext();
const Context = (props) => {
return (
{props.children}
);
};
export default Context;
import { BrowserRouter } from 'react-router-dom';
и вот это
import React, { createContext, useState } from 'react';
export const CarContext = createContext();
const Context = (props) => {
// Здесь можно определить состояния и методы для их изменения
const [car, setCar] = useState('Audi');
return (
{props.children}
);
};
export default Context;