AuthTemplate.js 271 Bytes
import React from 'react';
import styled from 'styled-components';
/*
register/login Layout
*/

const AuthTemplateBlock = styled.div``;

const AuthTemplate = ({ children }) => {
  return <AuthTemplateBlock>{children}</AuthTemplateBlock>;
};

export default AuthTemplate;