Делал по гайду из ютуба проект на реакте и блогер вывел функцию в другой файл. После этого ошибка:
Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it
Код, в котором вызывается функция:
import { useState } from 'react'; import {cars} from './cars.data'; import Car_item_fun from './car_item/cars_item';
function Home() { const [count, setCount] = useState(0)