A kernel represents the app itself. It consists of modular pieces called subsystems, responsible for different functionalities of the app.
Creates an app kernel using a given array of subsystems, initial structure of the app and an optional configuration.
import { Kernel, defaultSubsystems } from '@skele/classic'
import navigationSubsystem from './customSubsystems/navigation'
const initData = { kind: 'app' }
Kernel.create([...defaultSubsystems, navigationSubsystem], initData)