> Show a list of links, that could be React Router Links or HTML links. You could show these links also inline or one-per-line style as a list.
npm install @s-ui/react-list-link> Show a list of links, that could be React Router Links or HTML links. You could show these links also inline or one-per-line style as a list.
``sh`
$ npm install @s-ui/react-list-link --save
js
import ListLink from '@s-ui/react-list-link'const listOfLinks = [
{
literal: 'Alquiler de pisos en Madrid Capital',
title: 'Element title',
target: '_parent',
url: 'http://fotocasa.es',
disabled: true,
customclass: 'sui-Link-disabled'
},
{
literal: 'Comprar pisos',
title: 'Element title',
target: '_parent',
url: 'http://fotocasa.es',
disabled: true,
customclass: 'sui-Link-disabled'
}
]
return (
list={listOfLinks}
displayInline />
/>
)
``> Find full description and more examples in the demo page.