docs(ui-shell): remove unused imports

This commit is contained in:
Eric Liu 2024-03-18 14:31:28 -07:00
commit acd08cde5c

View file

@ -2,11 +2,7 @@
import { import {
Header, Header,
HeaderUtilities, HeaderUtilities,
HeaderAction,
HeaderSearch, HeaderSearch,
HeaderPanelLinks,
HeaderPanelDivider,
HeaderPanelLink,
SkipToContent, SkipToContent,
Content, Content,
Grid, Grid,
@ -114,9 +110,9 @@
Click the button and search for something. Dispatched events are Click the button and search for something. Dispatched events are
logged below: logged below:
</p> </p>
<div style="overflow-x: scroll;"> <div style:overflow-x="auto">
{#each events as { type, ...rest }} {#each events as { type, ...rest }}
<div style="display: block; margin-bottom: var(--cds-layout-01)"> <div style:margin-bottom="var(--cds-layout-01)">
<div><strong>on:{type}</strong></div> <div><strong>on:{type}</strong></div>
{#if Object.keys(rest).length > 0} {#if Object.keys(rest).length > 0}
<pre>{JSON.stringify(rest, null, 2)}</pre> <pre>{JSON.stringify(rest, null, 2)}</pre>