Skip to content

Commit

Permalink
hot fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
opeolluwa committed Sep 16, 2023
1 parent 6b53e46 commit 1e693e6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/codecs/AudioCodec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react'

export default function AudioCodec() {
return (
<div>AudioCodec</div>
)
}
7 changes: 7 additions & 0 deletions src/components/codecs/DocumentCodec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react'

export default function DocumentCodec() {
return (
<div>DocumentCodec</div>
)
}
7 changes: 7 additions & 0 deletions src/components/codecs/MusicCodec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react'

export default function MusicCodec() {
return (
<div>MusicCodec</div>
)
}
7 changes: 7 additions & 0 deletions src/components/codecs/VideoCodec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react'

export default function VideoCodec() {
return (
<div>VideoCodec</div>
)
}
2 changes: 2 additions & 0 deletions src/components/thumbnail/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import FileCard from "./FileCard";
export default FileCard;

0 comments on commit 1e693e6

Please sign in to comment.