mirror of
https://github.com/Raghu-Ch/ReactWeather.git
synced 2026-02-10 03:03:01 -05:00
18 lines
265 B
JavaScript
18 lines
265 B
JavaScript
var React = require('react');
|
|
|
|
// var About = React.createClass({
|
|
// render: function (){
|
|
// return (
|
|
// <h3>About Component</h3>
|
|
// );
|
|
// }
|
|
// });
|
|
|
|
var About = (props) => {
|
|
return (
|
|
<h3>About Component</h3>
|
|
);
|
|
};
|
|
|
|
module.exports = About;
|