```md
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './button.component';
export const someFunction = (someValue) => {
return `i am a ${someValue}`;
};
{
const { label } = args;
const functionResult = someFunction(label);
return {
props: {
...args,
label: functionResult,
},
};
}} />
```