/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import Translate from '@docusaurus/Translate'; import Link from '@docusaurus/Link'; import styles from './styles.module.css'; function TwitterLink() { return ( Twitter ); } function RssLink() { return ( RSS feeds ); } export default function ChangelogListHeader({ blogTitle, }: { blogTitle: string; }): JSX.Element { return (

{blogTitle}

, rssLink: , }}> { 'Subscribe through {rssLink} or follow us on {twitterLink} to stay up-to-date with new releases!' }

); }