mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
25 lines
471 B
TypeScript
25 lines
471 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import AuthCopyright from './AuthCopyright';
|
|
|
|
/**
|
|
* Authentication insider page.
|
|
*/
|
|
export default function AuthInsider({
|
|
logo = true,
|
|
copyright = true,
|
|
children,
|
|
}) {
|
|
return (
|
|
<div class="authentication-insider__content">
|
|
<div class="authentication-insider__form">
|
|
{ children }
|
|
</div>
|
|
|
|
<div class="authentication-insider__footer">
|
|
<AuthCopyright />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|