Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { COLORS } from '@/styles/constants/colors';
// HorizontalLine.js
import styled from 'styled-components';
import styled from '@emotion/styled';
interface HorizontalLineProps {
width?: number;
color?: string;
Expand Down

This file was deleted.

46 changes: 0 additions & 46 deletions src/components/myPage/assignesAbout/attendance_table/each_week.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const MypageAssignList: React.FC<FormData_d> = ({ width,subject,assIndex }) => {
return (
<div style={{display: "flex",
flexDirection: "column",
alignItems: "center", width:`${formData.width}px`,backgroundColor:`${COLORS.grayscale.white}`,
alignItems: "center", width:`${formData.width}`,backgroundColor:`${COLORS.grayscale.white}`,
height: "500px"}}>
<AssignListTitleBox width={formData.width} title={formData.subject.get_title()}/>
<div style={{width:`${formData.width}px`, height:"25px",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@

import React, { ChangeEvent, useState } from 'react';
import { Subject } from '@/components/myPage/assignesAbout/subjects_data';
import SubjectCard from '@/components/myPage/assignesAbout/my_page_main/subject_card';
import { title } from 'process';
import AssignListTitleBox from '@/components/myPage/assignesAbout/my_page_my_assign/assign_title_box';
import AssignBoxEach from '@/components/myPage/assignesAbout/my_page_my_assign/assign_each_box';
import { COLORS } from '@/styles/constants/colors';
import HorizontalLine from '@/components/myPage/assignesAbout/HorizontalLine/HorizontalLine';
import AssignDetailBox from '@/components/myPage/assignesAbout/my_page_my_assign/base_box';
Expand Down Expand Up @@ -37,7 +34,8 @@ const MypageAssignList: React.FC<FormData_d> = ({ width,subject,assIndex }) => {
return (
<div style={{display: "flex",
flexDirection: "column",
alignItems: "center", width:`${formData.width}`}}>
alignItems: "center", width:`${formData.width}`,backgroundColor:`${COLORS.grayscale.white}`,
height:"500px"}}>
<AssignListTitleBox width={formData.width} title={formData.subject.get_assign_title(formData.assIndex)}/>
<div style={{width:formData.width, height:"25px",
backgroundColor:`${COLORS.grayscale.Gray5}`,marginBottom:"3px" }}></div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

import React, { ChangeEvent, useState } from 'react';
import { Subject } from '@/components/myPage/assignesAbout/subjects_data';
import SubjectCard from '@/components/myPage/assignesAbout/my_page_main/subject_card';
import { title } from 'process';
import AssignListTitleBox from '@/components/myPage/assignesAbout/my_page_my_assign/assign_title_box';
import AssignBoxEach from '@/components/myPage/assignesAbout/my_page_my_assign/assign_each_box';
import { COLORS } from '@/styles/constants/colors';
Expand Down Expand Up @@ -30,7 +28,8 @@ const MypageAssignList: React.FC<FormData> = ({ width,subject }) => {
return (
<div style={{display: "flex",
flexDirection: "column",
alignItems: "center", width:`${formData.width}`}}>
alignItems: "center", width:`${formData.width}`,backgroundColor:`${COLORS.grayscale.white}`,
height:"500px"}}>
<AssignListTitleBox width={formData.width} title={formData.subject.get_title()}/>
<div style={{width:formData.width, height:"25px",
backgroundColor:`${COLORS.grayscale.Gray5}`,marginBottom:"3px" }}></div>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading