강의

멘토링

커뮤니티

Inflearn Community Q&A

andrewjkme1229's profile image
andrewjkme1229

asked

리액트 처음이시라구요? React JS로 웹 서비스 만들기!

Practicing this setState

useEffect in the functional components

Written on

·

182

0

import React, {useState, useEffect} from 'react';

...

function App() {

  const[movies, setMovies] = setState([

    {

      title: "Matrix",

      poster: "https://~"

    },

...

  ]);

  useEffect(() => {

    const timer = setTimeout(() => {

      setMovies([

        {

           title: "Trainspotting",

           poster: "https://~"

        },

        ...movies

      ])

    }, 5000);

    return () => clearTImeout(timer);

  // eslint-disable-next-line ([]로 인해 생기는 오류를 무시한다)

  }, []);  

reactjavascript

Answer 1

0

lynnata0533님의 프로필 이미지
lynnata0533
Instructor

안녕하세요. 노마드코더입니다. 저희가 인프런에서 질문/답변은 지원을 하지 않고 있습니다. youtube 링크에 직접 댓글로 달아주시거나. 저희 노마드아카데미 (https://academy.nomadcoders.co) 에서 질문해주시기 바랍니다. 고맙습니다.

andrewjkme1229's profile image
andrewjkme1229

asked

Ask a question