Skip to content

Commit

Permalink
chore: fix case sensitive QRLs, update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Jun 7, 2021
1 parent bc2c7db commit 34ed4bc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Running cypress manually
## Publishing

```
bazel run client:qwik_pkg.publish -- --tag=next
bazel run client:qwik_pkg.publish -- --tag=next --access=public
```

## Pre-submit hooks
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ An Open-Source framework designed for best possible [time to interactive](https:
- Understand the difference between [resumable and replayable](./docs/RESUMABLE.md) applications.
- Learn about Qwik's high level [mental model](./docs/MENTAL_MODEL.md).

<br />
## Community

Joint our [discord](https://discord.gg/4kmQhYgt) channel.

<hr />
<p align="center">
Made with ❤️ by <a target="_blank" href="https://www.builder.io/">Builder.io</a>
</p>
2 changes: 1 addition & 1 deletion integration/todo/client.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div decl:template="ui:/ToDoApp_template" on:q-init="base:qwik#markDirty"></div>
<div decl:template="ui:/TodoApp_template" on:q-init="base:qwik#markDirty"></div>
</body>
</html>
6 changes: 3 additions & 3 deletions integration/todo/ui/TodoApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import { jsxDeclareComponent, QRL } from '../qwik.js';
export interface ToDoAppProps {}

// TODO(docs): Add explanation why code above is same as comment.
// <div decl:template="ui:/ToDoApp_template">
export const ToDoApp = jsxDeclareComponent<ToDoAppProps>(QRL`ui:/ToDoApp_template`);
// <div decl:template="ui:/TodoApp_template">
export const ToDoApp = jsxDeclareComponent<ToDoAppProps>(QRL`ui:/TodoApp_template`);
/**
export function ToDoApp2(props: Record<any, any>) {
return <div decl:template="ui:/ToDoApp_template" />;
return <div decl:template="ui:/TodoApp_template" />;
}
*/

0 comments on commit 34ed4bc

Please sign in to comment.