Skip to content

Commit

Permalink
Merge pull request #313 from Bamdoliro/develop
Browse files Browse the repository at this point in the history
Release - user v1.0.3
  • Loading branch information
SEOKKAMONI authored Aug 23, 2023
2 parents 3bbee65 + 5d33362 commit 2bc559e
Show file tree
Hide file tree
Showing 79 changed files with 361 additions and 297 deletions.
4 changes: 2 additions & 2 deletions apps/admin/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export const metadata = {
description: '부산소프트웨어마이스터고등학교 입학전형 시스템 마루의 어드민 페이지입니다.',
};

interface PropsType {
interface Props {
children: ReactNode;
}

const RootLayout = ({ children }: PropsType) => {
const RootLayout = ({ children }: Props) => {
return (
<html lang="en">
<body>
Expand Down
4 changes: 2 additions & 2 deletions apps/admin/src/components/Provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import { GlobalStyle } from '@maru/theme';
import { ReactNode } from 'react';

interface PropsType {
interface Props {
children: ReactNode;
}

const Provider = ({ children }: PropsType) => {
const Provider = ({ children }: Props) => {
return (
<>
<GlobalStyle />
Expand Down
4 changes: 2 additions & 2 deletions apps/admin/src/components/common/ListHeader/ListHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { flex } from '@maru/utils';
import { ReactNode } from 'react';
import { styled } from 'styled-components';

interface PropsType {
interface Props {
children: ReactNode;
}

const ListHeader = ({ children }: PropsType) => {
const ListHeader = ({ children }: Props) => {
return <StyledListHeader>{children}</StyledListHeader>;
};

Expand Down
4 changes: 2 additions & 2 deletions apps/admin/src/components/common/ListItem/ListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { flex } from '@maru/utils';
import { ReactNode } from 'react';
import { styled } from 'styled-components';

interface PropsType {
interface Props {
children: ReactNode;
}

const ListItem = ({ children }: PropsType) => {
const ListItem = ({ children }: Props) => {
return <StyledListItem>{children}</StyledListItem>;
};

Expand Down
6 changes: 3 additions & 3 deletions apps/admin/src/layouts/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { flex } from '@maru/utils';
import { ReactNode } from 'react';
import { styled } from 'styled-components';

interface PropsType {
interface Props {
children: ReactNode;
}

const AppLayout = ({ children }: PropsType) => {
const AppLayout = ({ children }: Props) => {
return (
<StyledAppLayout>
<SideBar />
Expand All @@ -20,7 +20,7 @@ export default AppLayout;

const StyledAppLayout = styled.div`
${flex({ flexDirection: 'row' })}
width: 100vw;
width: 100%;
height: 100vh;
`;

Expand Down
9 changes: 9 additions & 0 deletions apps/user/public/svg/error.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2bc559e

Please sign in to comment.