Create a React horizontal in-line list from an unordered list
npm install @t7/list-inline --saveimport ListInline from '@t7/list-inline'
import '@t7/list-inline/dist/index.css'/* create your list as a single logical grouping */
<ListInline>
<li>
List Item 1
</li>
<li>
List Item 2
</li>
<li>
List Item 3
</li>
</ListInline>
*if your build process will not resolve the CSS in a module copy the file @t7/list-inline/dist/index.css from the node_modules folder and reference the copy with an HTML link *
e.g.
<link rel="stylesheet" href="<your stylesheet folder>/@t7/list-inline/dist/index.css">Demo page: