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