Skip to content

Instantly share code, notes, and snippets.

@riteshsangwan
Created February 3, 2017 18:04
Show Gist options
  • Save riteshsangwan/7777471d4026c67ee051c512749e6adc to your computer and use it in GitHub Desktop.
Save riteshsangwan/7777471d4026c67ee051c512749e6adc to your computer and use it in GitHub Desktop.
import ReactDOM from 'react-dom';
import Menus from './Menus';
ReactDOM.render(
Menus,
document.getElementById('root');
);
import React from 'react';
class Menus extends React.Component {
render() {
return (
<Menu items={items} />
);
}
}
export default class Menus;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment