본문 바로가기
javascript/TypeScript

TypeScript에서 Style 타입 명시하기

by 바나냥 2020. 10. 7.
  const textStyle: CSSProperties = {
    textDecoration: none
  };
  
  <span onClick={handleToggle} style={textStyle}>
	{todo.text}
</span>

 

const styles = {
  promAlert: {
    display: "flex",
  } as React.CSSProperties,
}

<div style={styles.promAlert}>

 

 

 

stackoverflow.com/questions/50960084/how-to-extends-cssproperties-in-react-project

 

How to extends `CSSProperties` in react project

I am from the javascript world and am new to typescript. I have a react project written in typescript. I declare an inline style but got below warning when I use it in a react component: Type '{ c...

stackoverflow.com

 

react.vlpt.us/using-typescript/05-ts-redux.html#srccomponentstodoitemtsx

 

5. TypeScript 에서 리덕스 프로처럼 사용하기 · GitBook

5. TypeScript 에서 리덕스 프로처럼 사용하기 이번 튜토리얼에서는 TypeScript 에서 리덕스를 프로처럼 사용하는 방법을 배워보도록 하겠습니다. 왜 제목이 "프로처럼" 이냐! 사실 조금 주관적입니다.

react.vlpt.us

 

댓글