Open In App

Rebass Basics Complete Reference

Last Updated : 06 Dec, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

React Rebass is a front-end framework that was designed keeping react in mind. React Rebass is the “Bootstrap of React” by Jori Lallo, It is accessible and themeable form components for use with Rebass.

Javascript




import React from 'react'
import { Text } from 'rebass';
 
function App() {
  return (
    <>
      <Text
        fontSize={[3, 4, 5]}
        fontWeight='bold'
        color='primary'>
        Text
      </Text>
    </>
  );
};
 
export default App;


Output:

Sample code output of React Rebass

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads