Is there a faster/more efficient way of declaring multiple variables in react native? Instead of
let foo = 'foo';
let bar = 'bar';
let foobar = 'foobar';
Obviously not problem for three variables, but for bigger sets of variables, is there a better way?