All my stories have titles in the format Category/ComponentName. Right now I hardcode all the categories (ex. title: 'Feedback/Alert'). I'd like to be able to dynamically create these titles based on a util:
title: `${getCategory('Alert')}/Alert`
However, as soon as I change the title value from a string to an interpolated string using backticks, it breaks the story. Can this be done?