Effective on March 1st, 2023, Cruip CSS templates are no longer distributed, maintained or supported.
If you are familiar with React you don’t need to read this chapter.
Every time you want to use a React component, it needs to be imported first. So, for example, let’s see how you can import a component (a button component) into another component (a page component). Following code shows a page component ๐
// Page component, for example /src/views/Page.js
import React from 'react';
import Button from '../components/elements/Button';
class Page extends React.Component {
render() {
return (
<Button>My button</Button>
);
}
}
export default Page;
You can learn more about importing components on the Create React App documentation.