появляется ошибка в консоли <...> Functions are not valid as a React child.
{this.countPrice}
. А надо {this.countPrice()}
. Ну или сделайте countPrice геттером.countPrice = () => {
return this.state.productsList.reduce((acc, n) => acc + n.price, 0);
}
Подскажите, пожалуйста, как правильно удалять товары по одиночке и все вместе.
Кстати console.log(productsList); выводится два раза и первый раз NULL. почему?
module.exports = {
module: {
rules: [
{
test: /\.(png|jpe?g|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
},
},
],
},
],
},
};
import React from 'react';
import image from './image.png';
const Example = () => (
<img src={image} />
);
import React from 'react';
const Example = () => (
<img src={require('./image.png')} />
);
import React from 'react';
import data from './products.json';
const List = () => (
<ul>
{data.map(product => (
<li key={product.id}>{product.title}</li>
)}
</ul>
);
padding: 0px
, margin-right: -15px;
margin-left: -15px;
if(get_field('pdf_link_from_admin'))
echo do_shortcode('[flipbook pdf="'.get_field('pdf_link_from_admin').'"]');