// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { StyledName } from './Styled'; export interface RosterNameProps { name: string; subtitle?: string; } const RosterName = ({ name, subtitle }: RosterNameProps) => (
{name}
{subtitle &&
{subtitle}
}
); export default RosterName;