REACT detect desktop, laptop or tablet, mobile phone react - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

detect desktop, laptop or tablet, mobile phone react


 473

Show ResultREACT


2

<!DOCTYPE html>
<html>
<head>
<script src="https://fb.me/react-0.14.3.min.js "></script>
<script src="https://fb.me/react-dom-0.14.3.min.js "></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script>
</head>
<body>

<script type="text/babel">

class App extends React.Component {
constructor(props) {
super(props)
this.state = { matches: window.matchMedia("(min-width: 768px)").matches };
this.componentDidMount = this.componentDidMount.bind(this);
}

componentDidMount() {
const handler = e => this.setState({matches: e.matches});
window.matchMedia("(min-width: 768px)").addListener(handler);
}

render() {
return (
<div>
{this.state.matches && (<h1>Big Screen</h1>)}
{!this.state.matches && (<h3>Small Screen</h3>)}
</div>
);
}
}

ReactDOM.render(
<App/>,
document.getElementById('my-div')
);

</script>

<div id="my-div"></div>

</body>
</html>


By        
The power of the user (%)
18%

REACT


1

// at first you install npm install react-responsive --save

import React from 'react';
import MediaQuery from 'react-responsive';

class App extends React.Component {
render() {
return (
<div>
<MediaQuery query='(min-device-width: 1224px)'>
<div>desktop or laptop</div>
</MediaQuery>
<MediaQuery query='(max-device-width: 1224px)'>
<div>tablet or mobile phone</div>
</MediaQuery>
</div>
);
}
}

export default App;


By        
The power of the user (%)
18%



The most helpful REACT solutions

How to get client ip address using react ?How to get client ip address using react ?REACT

Click to see more ...

  19.2K     421

how to get the type of a device using react ?how to get the type of a device using react ?REACT

Click to see more ...

  2.1K     220

create digital clock reactcreate digital clock reactREACT

Click to see more ...

  1.6K     141

country dropdown using reactcountry dropdown using reactREACT

Click to see more ...

  1.1K     127

create alarm clock using reactcreate alarm clock using reactREACT

Click to see more ...

  5K     116

How to get latitude and longitude using react/javascript ?How to get latitude and longitude using react/javascript ?REACT

Click to see more ...

  944     108

get client country reactget client country reactREACT

Click to see more ...

  708     82

get ip address reactget ip address reactREACT

Click to see more ...

  932     81

time ago reacttime ago reactREACT

Click to see more ...

  527     74

detect mobile device reactdetect mobile device reactREACT

Click to see more ...

  520     58

Welcome aboard!
We are happy you are here and
wish you good net-raft!