<a href={props.url1}>Facebook</a> //Переходит на сайт как абсолютная ссылка
<a href={props.url2}>Github</a> //Переходит localhost/github.com как относительная ссылка
console.log(/https?:\/\/.*?/.exec('https://github.com'));
// ["https://", index: 0, input: "https://github.com", groups: undefined]
console.log(/https?:\/\/.*?/.exec('github.com'));
// null