From 664e9467ee3b6a12847d1a7718519b8d09c8ac12 Mon Sep 17 00:00:00 2001
From: Matthew Patrick <Matthew.535200018@stu.untar.ac.id>
Date: Mon, 25 Apr 2022 20:25:59 +0700
Subject: [PATCH] Register_Error - added empty stateful widget

---
 lib/components/register_error.dart | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/lib/components/register_error.dart b/lib/components/register_error.dart
index e69de29..88172b8 100644
--- a/lib/components/register_error.dart
+++ b/lib/components/register_error.dart
@@ -0,0 +1,15 @@
+import 'package:flutter/material.dart';
+
+class Register_Error extends StatefulWidget {
+  Register_Error({Key? key}) : super(key: key);
+
+  @override
+  State<Register_Error> createState() => _Register_ErrorState();
+}
+
+class _Register_ErrorState extends State<Register_Error> {
+  @override
+  Widget build(BuildContext context) {
+    return Container();
+  }
+}