docs/src/theme/Footer/Copyright/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
export default function FooterCopyright({copyright}) {
  return (
    <div
      className="footer__copyright"
      // Developer provided the HTML, so assume it's safe.
      // eslint-disable-next-line react/no-danger
      dangerouslySetInnerHTML={{__html: copyright}}
    />
  );
}