aws-cognito-react
Version:
aws-cognito-react primary goal is to provide user management services for a web App in a scalable serverless way.
22 lines (19 loc) • 370 B
JavaScript
import React from 'react'
export const LandingComponent = () => {
const style = {
page: {},
layout: {},
heading: {
textAlign: 'center',
fontSize: '48px',
margin: '64px'
}
}
return (
<div style={style.page}>
<div style={style.layout}>
<div style={style.heading}>Landing Page</div>
</div>
</div>
)
}