I want the following call to my function
MakeMargin(unit1)
To ouput the following variable ( not a string ! ):
theme.spacing.unit1
I tried the following :
function MakeMargin(props) {
const output = theme.spacing + props
return (
output
);
}