UNPKG

@skele/classic

Version:

Skele is an architectural framework that assists with building data-driven apps with React or React Native.

18 lines (13 loc) 323 B
# Entry Point Provides an entry point to the kernel. ## Usage ```javascript import React from 'react' import { EntryPoint } from '@skele/classic' export const EntryPointWrapper = system => class extends React.Component { render() { return <EntryPoint kernel={system} keyPath={['scene', 0]} /> } } ```