Skip to content
Snippets Groups Projects
PublicPage.js 266 B
Newer Older
Orlando Piñero's avatar
Orlando Piñero committed
import React, { Component } from "react";
Orlando Piñero's avatar
Orlando Piñero committed
import LoginButton from "./loginButton";
Orlando Piñero's avatar
Orlando Piñero committed

class PublicPage extends Component {
    render() {
        return (
            <div>
Orlando Piñero's avatar
Orlando Piñero committed
                <LoginButton />
Orlando Piñero's avatar
Orlando Piñero committed
            </div>
        )
    }
}

export default PublicPage