Skip to content

Commit

Permalink
add: gh creds
Browse files Browse the repository at this point in the history
  • Loading branch information
Valexr committed Apr 14, 2024
1 parent cb31ed4 commit 2a838aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<script lang="ts">
export let name: Name;
export let repository: Repository;
async function setBack() {
const images = await getPhotos(1, {});
Expand Down
4 changes: 3 additions & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { name, repository } from 'package.json'
import App from './App.svelte';

export default new App({
target: document.body
target: document.body,
props: { name, repository }
});

0 comments on commit 2a838aa

Please sign in to comment.