draft of law cases

This commit is contained in:
2022-07-08 15:50:52 +08:00
parent a4d18910bb
commit 57e8c72f6b
11 changed files with 189 additions and 0 deletions

17
components/Video.js Normal file
View File

@@ -0,0 +1,17 @@
function Video({ src }) {
return (
<p
style={{
textAlign: "center",
}}
>
<video
src={src}
controls
width="70%"
/>
</p>
);
}
export default Video;