How to make two column section using grid?
Hello everyone, I just want to ask how do I make a 2 column section using grid? I have set the columns in small size to 1 then medium 2 but it just show full width of two columns:

Forms\Components\Grid::make()
->columns([
'sm' => 1,
'md' => 2
])
->schema([
Forms\Components\Section::make('Sync Schedule')
->schema([
Forms\Components\Placeholder::make('action')
->label('Sync Here')
->content($this->integration->name)
]),
Forms\Components\Section::make('Sync Schedule')
->schema([
Forms\Components\Placeholder::make('action')
->label('Sync Here')
->content($this->integration->name)
]),
]),