17 lines
256 B
Go
17 lines
256 B
Go
// Copyright (c) 2021 David Vogel
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
package layout
|
|
|
|
import (
|
|
"github.com/vugu/vugu"
|
|
)
|
|
|
|
type Container struct {
|
|
AttrMap vugu.AttrMap
|
|
|
|
DefaultSlot vugu.Builder
|
|
}
|