We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ebf19 commit 9b73e5cCopy full SHA for 9b73e5c
examples/nextjs-starter/components/Hero.tsx
@@ -12,8 +12,18 @@ type HeroProps = ComponentProps<{
12
13
const Hero: React.FC<HeroProps> = () => (
14
<div>
15
- <UniformText className="title" parameterId="title" as="h1" data-test-id="hero-title"/>
16
- <UniformRichText parameterId="description" className="description" data-test-id="hero-description"/>
+ <UniformText
+ className="title"
17
+ parameterId="title"
18
+ as="h1"
19
+ data-test-id="hero-title"
20
+ placeholder="Hero title goes here"
21
+ />
22
+ <UniformRichText
23
+ parameterId="description"
24
+ className="description"
25
+ data-test-id="hero-description"
26
27
</div>
28
);
29
0 commit comments