Skip to content

Commit cf8a925

Browse files
committed
Add .idea to gitignore
1 parent 907ad94 commit cf8a925

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ next-env.d.ts
4242
!.yarn/plugins
4343
!.yarn/releases
4444
!.yarn/sdks
45-
!.yarn/versions
45+
!.yarn/versions
46+
47+
.idea

src/components/SocialResult/index.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
interface SocialResultProps {}
1+
interface SocialResultProps {
22

3-
function SocialResult({}: SocialResultProps) {
4-
return <div className={"bg-white rounded-lg p-4"}>
3+
}
54

5+
function SocialResult({}: SocialResultProps) {
6+
return <div className={"bg-gray-900 rounded-lg p-4 flex flex-col "}>
7+
<h2 className={'text-center text-2xl font-semibold'}>Socials</h2>
68
</div>
79
}
810

0 commit comments

Comments
 (0)