Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
skycube19 committed Oct 29, 2024
1 parent e935a24 commit 803c109
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/Error.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";

class Error extends React.Component<{message: string}, {}> {

render() {
return (
<text>{this.props.message}</text>
)
}
}

export default Error;

0 comments on commit 803c109

Please sign in to comment.