import React, { Component } from 'react' import { UserAgent } from '@quentin-sommer/react-useragent' class Index extends Component { render () { return (

The following texts render conditionally depending of your user-agent, try visiting with another device or using the chrome dev tools device emulator !

You seem to be on an android device

You seem to be on an ios device

You seem to be on a computer

Hello Linux!

Hello MacOS!

Hello Windows!

See full documentation here
) } } export default Index