THeader 컴포넌트 onBackButton Foucs 추가
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user