Skip to content

Commit

Permalink
Update src/content/design-system/development/guides/usage
Browse files Browse the repository at this point in the history
  • Loading branch information
samithaf authored Jan 26, 2024
1 parent 1dfcd18 commit 818a3fd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ We recommended the individual package import approach if you have issues with [T
return (
<section>
<div className="space-x-4 mb-2">
<button look="primary">Pay here</button>
<Button look="primary">Pay here</Button>
</div>
</section>
); } `} />
Expand All @@ -25,7 +25,7 @@ However, use this approach with caution as it may cause issues with [Tree shakin
<StaticCode language="tsx" code={` import { Button } from '@westpac/ui'; export default function SampleApp() { return (
<section>
<div className="space-x-4 mb-2">
<button look="primary">Pay here</button>
<Button look="primary">Pay here</Button>
</div>
</section>
); } `} />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Usage
description: >-
This page describes how to use GEL components within your application.
description: This page describes how to use GEL components within your application.
namedExport:
discriminant: false
excludeFromNavbar: false
design:
- title:
name: Using components
slug: using-components
noTitle: false
accessibility: []
relatedComponents: []
code: []
Empty file.

0 comments on commit 818a3fd

Please sign in to comment.