/*! * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import APLRenderer from '../APLRenderer'; import { Component, FactoryFunction } from './Component'; import { MultiChildScrollable } from './MultiChildScrollable'; /** * @ignore */ export class GridSequence extends MultiChildScrollable { constructor(renderer: APLRenderer, component: APL.Component, factory: FactoryFunction, parent?: Component) { super(renderer, component, factory, parent); } protected getNormalDisplay(): string { return 'grid'; } }