티스토리 뷰
728x90
반응형
interface SectionTemplateProps {
title: string;
imageSrc: string;
children: React.ReactNode;
}
export default function SectionTemplate({
title,
imageSrc,
children,
}: SectionTemplateProps) {
return (
<section>
<header className="main">
<h1>{title}</h1>
</header>
<span className="image main">
<img src={imageSrc} style={{ height: 300 }} alt="section image" />
</span>
<div>{children}</div>
</section>
);
}
import SectionTemplate from "./SectionTemplate";
export default function AnotherPage() {
return (
<SectionTemplate
title="useEffect"
imageSrc={`${import.meta.env.BASE_URL}images/img02.jpeg`}
>
{/* 변경될 내용 */}
<p>useEffect는 컴포넌트의 생명주기에 따라 특정 동작을 실행할 때 사용됩니다.</p>
<p>예를 들어, 데이터 가져오기, 이벤트 리스너 추가/제거 등을 처리할 수 있습니다.</p>
</SectionTemplate>
);
}
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- java.sql
- 스프링 시큐리티(spring security)
- 진수 변환
- error-java
- java 키워드 정리
- await
- jstl(java standard tag library)-core
- jstl(java standard tag library)
- System.Diagnostics
- 메이븐(maven)
- 문자 자르기
- nl2br
- 제품 등록
- MainActor
- REST API
- 스프링 시큐리티(spring security)-http basic 인증
- 람다식(lambda expression)
- system.io
- 스프링 프레임워크(spring framewordk)
- java web-mvc
- 스프링 프레임워크(spring framework)
- .submit()
- jsp 오픈 소스
- In App Purchase
- docker
- React
- 특정 문자를 기준으로 자르기
- 표현 언어(expression language)
- 인텔리제이(intellij)
- java-개발 환경 설정하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함