![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-modal-dumb
Advanced tools
$ npm install --save react-modal-dumb
import React from 'react';
import { render } from 'react-dom';
import Modal from 'react-modal-dumb';
const SideNav = React.createClass({
getInitialState: function() {
return {
editing: false
}
},
setEditing: function(editing) {
this.setState({editing});
},
render: function() {
const {editing} = this.state;
return (
<div>
<a href="#" id="modal-launcher" onClick={() => this.setEditing(true)}>Araç Listesi</a>
<Modal show={editing} close={()=> this.setEditing(false)}>
hello modal
</Modal>
</div>
)
}
});
render(<SideNav />, document.getElementById('hello'));
Run webpack in watch mode with the webpack.config.dev.js config file
$ git clone git@github.com:aykutyaman/react-modal-dumb.git
$ cd react-modal-dumb
$ npm install
$ npm run dev
Open http://localhost:8080/webpack-dev-server/bundle in order to see the results. Now edit lib files or examples/index.jsx to develop your awesome component.
FAQs
Fully controlled dumb react component
The npm package react-modal-dumb receives a total of 5 weekly downloads. As such, react-modal-dumb popularity was classified as not popular.
We found that react-modal-dumb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.