0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
Showing only changes of commit 6aafadb4ad - Show all commits

View File

@@ -7,7 +7,7 @@ export class Reffuse<R, ER> {
constructor( constructor(
runtime: ManagedRuntime.ManagedRuntime<R, ER> runtime: ManagedRuntime.ManagedRuntime<R, ER>
) { ) {
this.Context = React.createContext(runtime) this.Context = React.createContext<ManagedRuntime.ManagedRuntime<R, ER>>(null!)
this.Provider = (props: { readonly children?: React.ReactNode }) => ( this.Provider = (props: { readonly children?: React.ReactNode }) => (
<this.Context <this.Context