/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";

import Text from "../../Text";

/**
 * @title Nested Text
 */
export default function TextNested(): React.Node {
  return (
    <Text>
      Cool story, <Text weight="bold">bro</Text>.
    </Text>
  );
}
