Э
Size: a a a
Э
p
CG
Error: 'image' is not exported by src\img\modal-warn-ico.png, imported by src\Components\ButtonIcon\ButtonIcon.tsx
p
CG
p
A
A
p
p
A
CG
import React from 'react';
import { image } from '../../img/modal-warn-ico.png';
export default function ButtonIcon() {
return (
<button type="button">
<img src={image} />
</button>
);
}
МГ
МГ
МГ
function*
forwardGenerator(start, limit, step) {
for (let currentPosition = start; currentPosition <= limit; currentPosition += step)
yield currentPosition;
return null;
}
const
forwardBy15Gen =
forwardGenerator(0, 100, 15);
const
nextPage = ({ value, done } = forwardBy15.next()) => !done && value;
p
Ai
Ai
Ai
Ai