Tabs help you structure the input fields in the admin panel. Tabs do not hold data, but can declare underlying fields which do (or hold more tabs).
import {alinea} from 'alinea'
alinea.tabs(
alinea.tab('Tab A', {
// ... fields
}),
alinea.tab('Tab B', {
// ... fields
})
)