Skip to content

Commit

Permalink
chore: add typing
Browse files Browse the repository at this point in the history
  • Loading branch information
SnowballXueQiu authored Oct 8, 2024
1 parent 20894b4 commit 015c3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/center/src/center.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import classes from './center.module.scss';

export const Center = (props: CenterProps) => {
export const Center: React.FC<CenterProps> = (props: CenterProps) => {
const { children, inline } = props;
return (
<div
Expand Down

0 comments on commit 015c3a7

Please sign in to comment.