mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import React from 'react';
|
|
import { Counter } from './components/Counter';
|
|
|
|
export const App = props => {
|
|
return (
|
|
<div>
|
|
<Counter text="chickens" />
|
|
<Counter text="ducks" />
|
|
</div>
|
|
);
|
|
};
|