refactored Article.tsx to View.tsx

This commit is contained in:
2025-11-15 03:22:51 +05:30
parent e16804b65d
commit 73d64ea497

View File

@@ -3,8 +3,8 @@ import { marked } from 'marked';
import { Box, Typography, Divider, IconButton, Chip } from '@mui/material';
import { styled } from '@mui/material/styles';
import ArrowBackRoundedIcon from '@mui/icons-material/ArrowBackRounded';
import { ArticleMeta } from "./ArticleMeta";
import { ArticleProps } from '../types/props';
import { ArticleMeta } from "../ArticleMeta";
import { ArticleProps } from '../../types/props';
const ArticleContainer = styled(Box)(({ theme }) => ({
maxWidth: '800px',