Fix package.json + NavRow indicator

This commit is contained in:
venashial
2022-06-21 22:37:26 -07:00
parent 06780c2805
commit bd3dd69ae1
4 changed files with 25 additions and 29 deletions

View File

@@ -35,22 +35,20 @@
import { NavRow } from 'omorphia'
</script>
<div class="card card--strip card--pad-x">
<NavRow
level={1}
links={[
{
href: '/Button',
label: 'Button',
},
{
href: '/Chips',
label: 'Chips',
},
{
href: '/NavRow',
label: 'NavRow',
},
]} />
</div>
<NavRow
level={1}
links={[
{
href: '/Button',
label: 'Button',
},
{
href: '/Chips',
label: 'Chips',
},
{
href: '/NavRow',
label: 'NavRow',
},
]} />
```