Fix example syntax by adding missing =

This commit is contained in:
Rasmus Nilsson 2022-01-19 14:48:41 +01:00
parent 6657698254
commit 7733b1931d

View File

@ -29,7 +29,7 @@ const someFunction = (valuePropertyA: String, valuePropertyB: String) => {
// Makes some computations and returns something
};
const Template: Story (args) => {
const Template: Story = (args) => {
const { propertyA, propertyB } = args;
//👇 Assigns the function result to a variable