Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lint #3374

Merged
merged 1 commit into from
Feb 22, 2019
Merged

Lint #3374

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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