THeader 컴포넌트 onBackButton Foucs 추가

This commit is contained in:
고동영
2024-02-22 18:53:31 +09:00
parent 3fe73a4f01
commit ee4ac13b49
2 changed files with 12 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ import React from "react";
import classNames from "classnames";
import SpotlightContainerDecorator from "@enact/spotlight/SpotlightContainerDecorator";
import Spottable from "@enact/spotlight/Spottable";
import css from "./THeader.module.less";
@@ -10,11 +11,13 @@ const Container = SpotlightContainerDecorator(
{ enterTo: "last-focused" },
"div"
);
const SpottableComponent = Spottable("button");
export default function THeader({ title, className, onBackButton, onClick }) {
return (
<Container className={classNames(css.tHeader, className)}>
{onBackButton && <button className={css.button} onClick={onClick} />}
{onBackButton && (
<SpottableComponent className={css.button} onClick={onClick} />
)}
<div className={css.title}>{title}</div>
</Container>
);