import React from 'react' import { companyName } from '@app/configs' function FixedCopyRight() { return (
{`© ${new Date().getFullYear()} ${companyName}, LLC`}
) } export { FixedCopyRight }