Skip to content

Commit

Permalink
estandard componentes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlbousing committed Apr 20, 2022
1 parent e679a46 commit a68e874
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions firebase/firebaseConfig.js
Expand Up @@ -2,6 +2,7 @@ import firebase from 'firebase/app';
import 'firebase/auth';
import "firebase/firestore";
import "firebase/storage";
import "firebase/messaging";

const firebaseConfig = {
apiKey: "AIzaSyDcozaEYbaLxHhZ_haJJVGIZCIy7Ai8YRE",
Expand Down
2 changes: 1 addition & 1 deletion pages/create.js
Expand Up @@ -10,7 +10,7 @@ import ImgProgressBar from '../components/ImgProgressBar';
import { data } from 'autoprefixer';


export default function create() {
export default function Create() {

const { authUser } = useAuth();
const router = useRouter();
Expand Down
2 changes: 1 addition & 1 deletion pages/logout.js
Expand Up @@ -4,7 +4,7 @@ import { useAuth } from "../AuthUserProvider"
import { useRouter } from "next/router";


export default function logout() {
export default function Logout() {

const { signOut } = useAuth();
const router = useRouter();
Expand Down
2 changes: 1 addition & 1 deletion pages/posts.js
@@ -1,6 +1,6 @@
import PostList from "../components/PostList"

export default function posts() {
export default function Posts() {
return (
<div>
<PostList/>
Expand Down
2 changes: 1 addition & 1 deletion pages/recovery.js
Expand Up @@ -3,7 +3,7 @@ import { useAuth } from "../AuthUserProvider";
import Alert from "../components/Alert";
import Success from "../components/Success";

export default function recovery() {
export default function Recovery() {

const [email, setEmail] = useState(null);
const [error, setError] = useState(null);
Expand Down

0 comments on commit a68e874

Please sign in to comment.