Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
React Components

You're reading from  React Components

Product type Book
Published in Apr 2016
Publisher
ISBN-13 9781785889288
Pages 182 pages
Edition 1st Edition
Languages
Author (1):
Christopher Pitt Christopher Pitt
Profile icon Christopher Pitt

Adding styles to components


There are a number of ways we could improve the appearance of our components. Let's take the PageView component, for example. What would make it better? Perhaps if we increased the font size and used a sans serif font, the titles would be clearer to read. Perhaps we could increase the margin around each page.

There are a few different ways to style our components. The first is by adding styles inline to the render method in PageView:

render() {
    var rowStyle = this.props.rowStyle || {
        "fontSize": "18px",
        "fontFamily": "Helvetica"
    };

    var labelStyle = this.props.labelStyle || {
        "whiteSpace": "nowrap"
    };

    var buttonStyle = this.props.buttonStyle || {
        "margin": "0 0 0 10px",
        "verticalAlign": "middle",
    };

    return <div style={rowStyle}>
        <label style={labelStyle}>
            {this.props.title}
        </label>
        <button
            style={buttonStyle}
            onClick...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}