Sign in

canrd-main / canrd-erp-front · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • canrd-erp-front
  • src
  • pages
  • User
  • index.styled-components.tsx
  • feat:init
    21f5dacd
    calmound authored
    2023-10-25 13:45:06 +0800  
    Browse Code ยป
index.styled-components.tsx 237 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from 'react';
import { styled } from 'umi';

const Wrapper = styled.div`
  h1 { background: rgb(121, 184, 242); }
`;

export default function Page() {
  return (
    <Wrapper>
      <h1>Page index</h1>
    </Wrapper>
  );
}