You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
393 B

import React from 'react';
import { Head } from '@react-ssr/express';
const Index: React.FC = () => {
return (
<>
<Head>
<title>Museo</title>
</Head>
<a href="/auth/facebook">Autenticarse con Facebook</a>
<a href="/auth/twitter">Autenticarse con Twitter</a>
<a href="/auth/google">Autenticarse con Google</a>
</>
);
};
export default Index;