Skip to content

Commit ef4904b

Browse files
committed
v0.3.0-alpha.29
1 parent 4fb9940 commit ef4904b

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

framework/react/components/ErrorBoundary.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { Component, createElement, CSSProperties } from 'react'
22

3-
export class ErrorBoundary extends Component {
4-
state: { error: Error | null }
5-
3+
export class ErrorBoundary extends Component<{}, { error: Error | null }> {
64
constructor(props: any) {
75
super(props)
86
this.state = { error: null }

import_map.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"imports": {
33
"std/": "https://deno.land/[email protected]/",
4-
"aleph/": "https://deno.land/x/[email protected].28/",
5-
"framework": "https://deno.land/x/[email protected].28/framework/core/mod.ts",
6-
"framework/react": "https://deno.land/x/[email protected].28/framework/react/mod.ts",
4+
"aleph/": "https://deno.land/x/[email protected].29/",
5+
"framework": "https://deno.land/x/[email protected].29/framework/core/mod.ts",
6+
"framework/react": "https://deno.land/x/[email protected].29/framework/react/mod.ts",
77
"react": "https://esm.sh/[email protected]",
88
"react-dom": "https://esm.sh/[email protected]",
99
"react-dom/server": "https://esm.sh/[email protected]/server"

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.3.0-alpha.28'
1+
export const VERSION = '0.3.0-alpha.29'

0 commit comments

Comments
 (0)