Skip to content

Commit

Permalink
[Task] #58 apply wrapper component
Browse files Browse the repository at this point in the history
  • Loading branch information
Type-Style committed Apr 19, 2024
1 parent a38e6fe commit 062f84c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/components/App.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React, { Component } from 'react';
import Contact from './Contact';
import * as css from"./css/app.module.css";
import Contacts from './Contacts';
import * as css from "./css/app.module.css";

class App extends Component {
render() {
return (
<div className={css.app}>
<h1 className={css.headline}>Hello, React!</h1>
<Contact name="Joe Doe" email='jd@gmail.com' phone='0123456789'/>
<Contacts />
</div>
);
}
Expand Down

0 comments on commit 062f84c

Please sign in to comment.