Some checks failed
Vercel Preview Deployment / Deploy-Preview (push) Failing after 1m16s
- Added handling of "empty" commit messages when merging. - Added isOpen prop to be passed as true to latest commit in feed.
10 lines
188 B
Svelte
10 lines
188 B
Svelte
<script>
|
|
import RssFeed from './RssFeed.svelte';
|
|
export let url;
|
|
</script>
|
|
|
|
<div>
|
|
<h2 class="text-xl mt-4 font-normal">Here are the 5 most recent commits</h2>
|
|
<RssFeed {url} />
|
|
</div>
|