-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from iivvaannxx/fix-rollup-paths
Fixes #26 - Rollup not resolving path aliases on build.
- Loading branch information
Showing
6 changed files
with
59 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
import { Slot, component$, useSignal } from "@builder.io/qwik"; | ||
import { component$, useSignal } from "@builder.io/qwik"; | ||
|
||
export const Counter = component$<{ initial: number }>((props) => { | ||
const counter = useSignal(0); | ||
|
||
const counter = useSignal(props.initial); | ||
|
||
return ( | ||
<button onClick$={() => counter.value++}> | ||
<Slot /> | ||
<Slot name="test" /> | ||
{counter.value} | ||
</button> | ||
|
||
<> | ||
<button onClick$={() => counter.value++}> | ||
{counter.value} | ||
</button> | ||
</> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.