Fixed groupId knob example.

This commit is contained in:
ASeeto 2018-02-16 20:28:40 -05:00
parent ec8a309b7c
commit 464a44d76b

View File

@ -78,7 +78,7 @@ stories.add('as dynamic variables', () => {
const groupId = 'GROUP-ID1'
const name = text('Name', 'Arunoda Susiripala', groupId);
const content = `I am ${name} and I'm ${age} years old.`;
const content = `My name is ${name}.`;
return (<div>{content}</div>);
});
```