Skip to content

Commit

Permalink
Removed args from story
Browse files Browse the repository at this point in the history
  • Loading branch information
brianacnguyen committed Nov 17, 2023
1 parent 4c3e8ff commit 04d83ea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ const BadgeNetworkMeta = {
export default BadgeNetworkMeta;

export const BadgeNetwork = {
args: {
imageSource: SAMPLE_BADGENETWORK_PROPS.imageSource,
},
render: (args: JSX.IntrinsicAttributes & BadgeNetworkProps) => (
<View
style={{
height: 50,
width: 50,
}}
>
<BadgeNetworkComponent {...args} />
<BadgeNetworkComponent
{...args}
imageSource={SAMPLE_BADGENETWORK_PROPS.imageSource}
/>
</View>
),
};

0 comments on commit 04d83ea

Please sign in to comment.