Skip to content

Commit

Permalink
Fix lint (#3374)
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyangli authored and adidahiya committed Feb 22, 2019
1 parent 3dcbb01 commit 221926f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/docs-app/src/components/resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ const RESOURCES: IResourceProps[] = [
export const Resources: React.SFC = () => (
<>
<div className="blueprint-resources">
{RESOURCES.map(resource => <ResourceCard key={resource.fileName} {...resource} />)}
{RESOURCES.map(resource => (
<ResourceCard key={resource.fileName} {...resource} />
))}
</div>
<Callout title="Missing fonts?" intent="warning">
Download Apple's San Francisco font directly from the source:{" "}
<a href="https://developer.apple.com/fonts/" target="_blank" rel="noopener noreferrer">https://developer.apple.com/fonts/</a>
<a href="https://developer.apple.com/fonts/" target="_blank" rel="noopener noreferrer">
https://developer.apple.com/fonts/
</a>
</Callout>
</>
);
Expand Down

1 comment on commit 221926f

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix lint (#3374)

Previews: documentation | landing | table

Please sign in to comment.