Add link to the future blog post

This commit is contained in:
Ingvar Stepanyan
2022-01-17 19:28:29 +00:00
parent aee7344f03
commit 3b9eca1046

View File

@@ -151,12 +151,28 @@ class App extends Component {
return h( return h(
'div', 'div',
{ class: 'center-parent' }, { class: 'center-parent' },
h(
'div',
{
class: 'center'
},
h('input', { h('input', {
class: 'center',
type: 'button', type: 'button',
onclick: this.selectDevice, onclick: this.selectDevice,
value: '🔍 Select camera' value: '🔍 Select camera'
}) }),
h(
'p',
null,
"Don't know how you got here? Check out the ",
h(
'a',
{ href: 'https://web.dev/porting-libusb-to-webusb/' },
'blog post'
),
'!'
)
)
); );
case 'Status': case 'Status':
return h( return h(