Skip to content

Commit d9c7f6c

Browse files
committed
updates: components
1 parent dc6c641 commit d9c7f6c

32 files changed

+650
-213
lines changed

components/Alert/SnackBar.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24

35
import Snackbar from "@mui/material/Snackbar";

components/Avatar/Profile.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import React, { useState } from "react";
24
import {
35
Avatar,

components/Blog/FeaturedPost.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24

35
import PropTypes from "prop-types";

components/Blog/Footer.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
"use client";
12
import * as React from "react";
23
import PropTypes from "prop-types";
4+
35
import Box from "@mui/material/Box";
46
import Container from "@mui/material/Container";
57
import Typography from "@mui/material/Typography";

components/Blog/Header.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import PropTypes from "prop-types";
35
import Toolbar from "@mui/material/Toolbar";

components/Blog/Main.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import PropTypes from "prop-types";
35
import Box from "@mui/material/Box";

components/Blog/MainFeaturedPost.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import PropTypes from "prop-types";
35
import Paper from "@mui/material/Paper";

components/Blog/Markdown.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import ReactMarkdown from "markdown-to-jsx";
35
import Typography from "@mui/material/Typography";

components/Blog/Sidebar.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24
import PropTypes from "prop-types";
35
import Grid from "@mui/material/Grid";

components/Card/Balance.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24

35
import PropTypes from "prop-types";

components/Card/Medias.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use client";
2+
13
import * as React from "react";
24

35
import Card from "@mui/material/Card";

0 commit comments

Comments
 (0)