summaryrefslogtreecommitdiff
path: root/examples/framework-alpine/src
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2023-07-14 15:57:06 +0200
committerGravatar GitHub <noreply@github.com> 2023-07-14 09:57:06 -0400
commitb3b640435b1a6630a40be7dbe81f21a9693856d2 (patch)
treeeb7985b3da08bc45618e99fc663dee88bf3feab7 /examples/framework-alpine/src
parent7a6b48a1a40122fa3a6c1aef112f82dec25ee083 (diff)
downloadastro-b3b640435b1a6630a40be7dbe81f21a9693856d2.tar.gz
astro-b3b640435b1a6630a40be7dbe81f21a9693856d2.tar.zst
astro-b3b640435b1a6630a40be7dbe81f21a9693856d2.zip
nit: export props has been unnecessary.. forever (#7646)
Diffstat (limited to 'examples/framework-alpine/src')
-rw-r--r--examples/framework-alpine/src/components/Counter.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/framework-alpine/src/components/Counter.astro b/examples/framework-alpine/src/components/Counter.astro
index cb5bbcb17..b895d57be 100644
--- a/examples/framework-alpine/src/components/Counter.astro
+++ b/examples/framework-alpine/src/components/Counter.astro
@@ -2,7 +2,7 @@
// Full Astro Component Syntax:
// https://docs.astro.build/core-concepts/astro-components/
-export interface Props {
+interface Props {
initialCount?: number;
}