mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
import fbt from "fbt";
|
|
|
|
function Component(props) {
|
|
const text = fbt(
|
|
`Hello, ${fbt.param("(key) name", capitalize(props.name))}!`,
|
|
"(description) Greeting"
|
|
);
|
|
return <div>{text}</div>;
|
|
}
|