render()

in src/components/applicationBar.tsx [43:61]


    render() {  
        const { classes } = this.props;
        return (
            <div className="appbar">
                <AppBar position="static">
                    <Toolbar className={classes.toolbar}>
                        <img src={Balloon} width="50" height="50" />
                        <Typography variant="h6" color="inherit" noWrap>Helium UI</Typography>          
                        <div className={classes.search}>
                            <SearchIcon />
                            <InputBase
                            placeholder="Search by title..." 
                            onChange={this.props.handleSearchChange} /> 
                        </div>
                    </Toolbar>
                </AppBar>          
            </div>
        )
    }