Add EmojiReaction component

This commit is contained in:
Michael Varrieur
2020-10-27 22:30:04 -04:00
parent 2afee54753
commit 73ffaacbae
4 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { render } from '@redwoodjs/testing'
import EmojiReaction from './EmojiReaction'
describe('EmojiReaction', () => {
it('renders successfully', () => {
expect(() => {
render(<EmojiReaction />)
}).not.toThrow()
})
})