Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
feat(component): add message for opening the designkit
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasse Küchler committed Dec 14, 2017
1 parent aa08895 commit de03059
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/component/presentation/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ export class Preview extends React.Component<PreviewProps> {
if (this.props.page) {
return this.createComponent(this.props.page.getRoot()) as JSX.Element;
} else {
return <div>(empty)</div>;
return (
<div>
Checkout or download the alva{' '}
<a href="https://github.com/meetalva/designkit">designkit</a> and open it as a
project
</div>
);
}
}

Expand Down

0 comments on commit de03059

Please sign in to comment.