ajeetchaulagain/react-clean-code-pattern

View on GitHub
pages/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Layout from "../src/components/Layout";
import AuthorsSection from "../src/components/AuthorsSection";

const IndexPage = () => {
  return (
    <Layout>
      <AuthorsSection />
    </Layout>
  );
};

export default IndexPage;