/*************************************************************************** * The contents of this file were generated with Amplify Studio. * * Please refrain from making any modifications to this file. * * Any changes to this file will be overwritten when running amplify pull. * **************************************************************************/ /* eslint-disable */ import React, { useState } from "react"; import InternalLink from '../InternalLink' export default function MigrationAlert(props) { const { isLegacy, url } = props const [closed, setClosed] = useState(false) const alertText = isLegacy ? "You are currently viewing the legacy GraphQL Transformer documentation." : "You are currently viewing the new GraphQL transformer v2 docs" const alertCTA = isLegacy ? "View latest documentation" : "Looking for legacy docs?" return (