Skip to content

Commit

Permalink
🛠 Refactor: Ex - Remove ExampleButtonCard
Browse files Browse the repository at this point in the history
TODO:2023-03-04-04-39-44 - Import + Re–write Example Components

Summary:
* Remove `example/src/components/ExampleButtonCard`.
* Remove `ExampleButtonCard` usage.

empty
  • Loading branch information
dominicstop committed Mar 3, 2023
1 parent 846e422 commit db7772d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 36 deletions.
33 changes: 0 additions & 33 deletions example/src/components/ExampleButtonCard.tsx

This file was deleted.

6 changes: 3 additions & 3 deletions example/src/examples/Example01.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import * as React from 'react';

import type { ExampleProps } from './SharedExampleTypes';

import { ExampleButtonCard } from '../components/ExampleButtonCard';
import { ExampleCard } from '../components/ExampleCard';


export function Example01(props: ExampleProps) {
return (
<ExampleButtonCard
<ExampleCard
style={props.style}
index={props.index}
title={'Example01'}
Expand All @@ -18,6 +18,6 @@ export function Example01(props: ExampleProps) {
]}
>
{/** TBA */}
</ExampleButtonCard>
</ExampleCard>
);
};

0 comments on commit db7772d

Please sign in to comment.