diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ecbecfd..6cbfc6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,11 +1,7 @@ name: "Check Deno code" on: - push: - branches: ["main"] pull_request: - types: - - opened branches: - main diff --git a/components/Button.tsx b/components/Button.tsx deleted file mode 100644 index f1b80a0..0000000 --- a/components/Button.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { JSX } from "preact"; -import { IS_BROWSER } from "$fresh/runtime.ts"; - -export function Button(props: JSX.HTMLAttributes) { - return ( - -

{props.count}

- - - ); -}