react-as-component
v1.0.7
Published
Create a component with custom selector
Downloads
12
Readme
How to install
npm i react-as-component
How to use
import AsComponent from 'react-as-component';
function MyDivFromAsComponent (){
return <AsComponent as={"div"}>...</AsComponent>;
}
Examples
Example button, which can be link
import AsComponent from 'react-as-component';
function MyButton({ asLink = false, value = "" }) {
return <AsComponent as={asLink ? 'a' : 'button'}>{value}</AsComponent>;
}
or Link from react-router-dom
import { Link } from 'react-router-dom';
import AsComponent from 'react-as-component';
function MyButton({ asLink = false, value = "" }) {
return <AsComponent as={asLink ? Link : 'button'}>{value}</AsComponent>;
}