diff --git a/package.json b/package.json index 2109c0a..de49fb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-datalist-input", - "version": "1.1.1", + "version": "1.1.2", "description": "This package provides a react component as follows: an input field with a drop down menu to pick a possible option based on the current input.", "main": "dist/main.js", "repository": { diff --git a/src/index.css b/src/DataListInput.css similarity index 100% rename from src/index.css rename to src/DataListInput.css diff --git a/src/index.js b/src/index.js index 840914a..3a6a136 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -import './index.css'; +import './DataListInput.css'; class DataListInput extends React.Component { constructor( props ) {