core-component-library
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
25 lines (21 loc) • 537 B
JavaScript
import React from 'react';
import HomePage from './homePage';
export default class TestPage extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
// This is how props will be passed through npm and reused
render() {
return (
<div>
<HomePage
barWidth="90%"
barColor="red"
barText="Test Page"
/>
</div>
)
}
}