Skip to content

Commit

Permalink
fix index of pages b00tc4mp#220
Browse files Browse the repository at this point in the history
  • Loading branch information
venturars committed Sep 19, 2024
1 parent e5b6c37 commit 31d08d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions staff/ventura-rodriguez/social-app/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from "react";
import pages from "./pages/index.jsx";
const { Landing } = pages;
import { Landing } from "./pages";

function App() {
return (
Expand Down
8 changes: 2 additions & 6 deletions staff/ventura-rodriguez/social-app/src/pages/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
import Landing from "./Landing.jsx";
import _Landing from "./Landing.jsx";

const index = {
Landing
}

export default index
export const Landing = _Landing;

0 comments on commit 31d08d7

Please sign in to comment.