Sobes.tech
Back to tasks
Junior — Senior
33

Какие сообщения появятся в консоли при рендере данного React‑компонента

Get help with live coding in real time with Sobes Copilot
Task condition

Укажите порядок вывода в консоль для следующего кода:

 export default function App() {
  return (
    <Parent>
      <Child />
    </Parent>
  );
}

function Parent({ children }) {
  console.log(1);

  useEffect(() => {
    console.log(2);
  }, []);

  return <div>{children}</div>;
}

function Child() {
  console.log(3);

  useEffect(() => {
    console.log(4);
  }, []);

  return <h1>Hi</h1>;
}