-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0968822
commit 73a9e17
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use client' | ||
|
||
import Message from '../components/message' | ||
|
||
export default function Home() { | ||
return ( | ||
<main className="flex flex-col gap-3 p-3"> | ||
<Message timeCreated="16.27"> | ||
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quae | ||
architecto quis iure ex id voluptatum reprehenderit quod cum laboriosam. | ||
Dicta temporibus quis sed assumenda tempore perferendis voluptas magnam | ||
minima dignissimos! Dignissimos porro ea incidunt quae blanditiis, | ||
exercitationem deserunt beatae omnis temporibus officiis, consequatur | ||
nulla accusamus commodi officia minus, ullam unde optio nisi similique | ||
ab maiores? Perferendis aliquid minus laudantium error. | ||
</Message> | ||
<Message timeCreated="16.27">Hello, i'm a message! 😎</Message> | ||
<Message timeCreated="16.28">I'm not empty</Message> | ||
<Message timeCreated="16.30">...</Message> | ||
</main> | ||
) | ||
} |