Makie recipe subplots?

I could not figure this out, but does Makie recipe support making multiple subplots?

For instance:

function Makie.plot!(plt::MyPlot)
    lines!(plt[1,1], ...)
    scatter!(plt[1,2], ...)
end

No, it doesn’t. The concepts of subplots and layouts currently live outside the recipe system.