Formats string using string, number, and react components as paramaters
npm install react-string-formatFormats string using string, number, and react components as paramaters
```
npm install react-string-format
`js`
import { format } from 'react-string-format';
`jsx`
format('first: {0}; second: {1}', 'hello', 'word');
// result:
'first: hello; second: word'Number
`jsx`
format('first: {0}; second: {1}', 1, 2);
// result:
'first: 1; second: 2'
`jsx``
format('hiperlink: {0}, span tag: {1}', Click Me, Bla-bla);
// result:
Click Me
Bla-bla