Skip to content

Releases: bjdodson/Valdi_Jetpack

beta-0.0.1

18 Nov 18:24
80315f5

Choose a tag to compare

The first beta release of Valdi Jetpack.

To include this library in your Valdi app, add the following to your project's WORKSPACE:

http_archive(
    name = "valdi_jetpack",
    strip_prefix = "Valdi_Jetpack-beta-0.0.1",
    url = "https://github.com/bjdodson/Valdi_Jetpack/archive/refs/tags/beta-0.0.1.tar.gz",
)

Add the dependency to your module's BUILD file in valdi_module deps:

"@valdi_jetpack//valdi_modules/compose_core",

Import a component:

import { Box } from 'compose_core/src/layout/Box';