UNPKG

coreui-react-starter

Version:

Open Source Bootstrap React Admin Template

29 lines (26 loc) 1.01 kB
import React, { Component } from 'react'; class Page404 extends Component { render() { return ( <div className="container"> <div className="row justify-content-center"> <div className="col-md-6"> <div className="clearfix"> <h1 className="float-left display-3 mr-4">404</h1> <h4 className="pt-3">Oops! You're lost.</h4> <p className="text-muted">The page you are looking for was not found.</p> </div> <div className="input-prepend input-group"> <span className="input-group-addon"><i className="fa fa-search"></i></span> <input className="form-control" size="16" type="text" placeholder="What are you looking for?" /> <span className="input-group-btn"> <button className="btn btn-info" type="button">Search</button> </span> </div> </div> </div> </div> ); } } export default Page404;