file: create Subtotal component with its own style

This commit is contained in:
Leon Xu
2022-05-05 21:14:36 -07:00
parent 1d7386db3f
commit 64da4e8f8a
2 changed files with 8 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
import React from "react";
import "./Subtotal.css";
function Subtotal() {
return <section className="subtotal">Subtotal</section>;
}
export default Subtotal;