commit working state
This commit is contained in:
+4
-3
@@ -4,10 +4,11 @@ import Navbar from "@/components/navbar";
|
||||
import Sidebar from "@/components/sidebar";
|
||||
import ArticlePreview from "@/components/news/article-preview"
|
||||
import ReactDOM from "react";
|
||||
import "public/global.css"
|
||||
import "/public/global.css"
|
||||
import "./index.css"
|
||||
import { Post, PostAttributes } from "@/model/sequelize/NewModels";
|
||||
import { constructAPIUrl } from "@/util/Utils";
|
||||
import Link from "next/link";
|
||||
|
||||
type DeepPartial<T> = T extends object ? {
|
||||
[P in keyof T]?: DeepPartial<T[P]>;
|
||||
@@ -23,12 +24,12 @@ export default async function Test() {
|
||||
<Header/>
|
||||
<Navbar/>
|
||||
<PageContainer>
|
||||
<Sidebar>
|
||||
{/* <Sidebar>
|
||||
<h1>
|
||||
Filters
|
||||
</h1>
|
||||
<ul><li>filter 1</li><li>filter 2</li><li>filter 3</li></ul>
|
||||
</Sidebar>
|
||||
</Sidebar> */}
|
||||
<main>
|
||||
{articles.map((article, i) => {
|
||||
console.log("Entered");
|
||||
|
||||
Reference in New Issue
Block a user